Remove Upsells from Single Product page
-
Hi guys
I want to remove the Upsells section from the Single Product page.
I tried both of these codes but nothing works:
// Remove up sells from after single product hook
remove_action( 'woodmart_before_sidebar_area', 'woocommerce_upsell_display', 20 );
// Remove up sells from after single product hook
remove_action( 'woodmart_woocommerce_after_sidebar', 'woocommerce_upsell_display', 10 );
Can you please help?
Thanks
Hi,
Try to add the following PHP code snippet to the child theme functions.php file to do this
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 );
Regards
That worked. Thank you so much!
The topic ‘Remove Upsells from Single Product page’ is closed to new replies.