Tagged: related products, woocommerce
Hi,
we tried
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’, 20 );
but were not successful.
Best wishes,
JK
Hey JanCre,
Try adding this code to the end of your functions.php file in Appearance > Editor:
function remove_woo_relate_products(){
remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 20);
}
add_action('init', 'remove_woo_relate_products', 10);
Best regards,
Mike
Bingo! Thanky you very much!