Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Can I take the Related Products on the Description page off?
Thanks again;
Greg
Hi Greg
To remove the Related Products block you’ll need to create a child theme, add a functions.php file to that child theme and enter the following into that file:
<?php function woocommerce_remove_related_products(){ remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20); } add_action('woocommerce_after_single_product_summary', 'woocommerce_remove_related_products');Activating a child theme usually means redoing Appearance > Customize and Appearance > Menu settings so test your child theme out before doing that.
Hope that helps.
Thank you!
For sure!