Home › Forums › WoodMart support forum › How can I move upsells above description? › Reply To: How can I move upsells above description?
August 4, 2021 at 12:49 pm
#310614
SmartInk
Participant
Yeah, it’s works for me, but I still have upsales under description.
I used this code:
add_action( 'init', 'move_upsells_after_related' );
function move_upsells_after_related( ) {
remove_action( 'woodmart_before_sidebar_area', 'woocommerce_upsell_display', 20 );
remove_action( 'woodmart_woocommerce_after_sidebar', 'woocommerce_upsell_display', 10 );
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 5 );
}