I’d like to know about the related products too.
I’ve got code to remove these, in a child functions.php, which had been working, but doesn’t seem to be any longer
‘/*
* wc_remove_related_products
*
* Clear the query arguments for related products so none show.
* Add this code to your theme functions.php file.
*/
function wc_remove_related_products( $args ) {
return array();
}
add_filter(‘woocommerce_related_products_args’,’wc_remove_related_products’, 10);’
and just tried this
‘/* Disable Related products on single product pages */
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’,20);’
Neither are working any more. Storefront 1.6.1
This may have been happening for a while but I’ve only noticed whilst comparing a staged Storefront 2 for issues.