Tagged: enfold, Product page
Hi,
product pages have the related product widget that appears below the description and I cannot find how to desactivate it.
thanks for your help.
Hey anniet!
Please add following code to Functions.php file in Appearance > Editor
function wc_remove_related_products( $args ) {
return array();
}
add_filter('woocommerce_related_products_args','wc_remove_related_products', 10);
Cheers!
Yigit
thanks a lot. will do it for sure to decluster the page.
Have a nice day