Home › Forums › WoodMart support forum › Custom/duplicate upsells products › Reply To: Custom/duplicate upsells products
November 4, 2019 at 7:12 am
#154522
John
Participant
Hello, you misunderstand what I wanted to do, but I have changed my mind.
Now i using this hook to move the upsells after add to cart area. But this happens:
https://imgur.com/a/IfoYVEV – because i have sticky add to cart activated.
This is the hook that i used:
function woodmart_remove_upsells() {
remove_action( 'woodmart_before_sidebar_area', 'woocommerce_upsell_display', 20 );
remove_action( 'woodmart_woocommerce_after_sidebar', 'woocommerce_upsell_display', 10 );
}
add_action( 'wp', 'woodmart_remove_upsells', 1100 );
add_action( 'woocommerce_after_add_to_cart_form', 'woocommerce_upsell_display', 1 );
Any advice? Thanks in advance