This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

3
  1. Andrew Misplon Staff

    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.

  2. Greg Kazz Kasse

    Thank you!

  3. Andrew Misplon Staff

    For sure!

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread