Hi Team!
I would like to move the Up-Sells section on the Product Page from the default section to Above Tabs.
I found this code on the web, which sort of works, it does not remove from the footer.
I would also like the Up-Sells Products to be centered. (Even if there are 4 products to show on 6 column setting).
add_action( 'init', 'move_upsells_after_related' );
function move_upsells_after_related( ) {
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 5 );
}
Kind Regards,
Jasbir