Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #596475

    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.

    #596490

    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

    #596522

    thanks a lot. will do it for sure to decluster the page.

    Have a nice day

    #596529

    Hi!

    You are welcome!
    You too have a nice day :)

    Regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.