• Resolved alwayspaws

    (@alwayspaws)


    Hello,

    I have sections on my homepage that I don’t want. The products under the sections are definitely not what I want showing. I only want a featured products section. I never added any of these sections:

    new in, we recommend, best sellers, fan favorites.

    I can’t locate where those settings are to delete, rename or to add the products I want.

    I want to keep the shop by category section.

    I took screenshots but can’t add images to the forum. When I’m in customization in the woocommerce section, it doesn’t show the extra sections.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 16 through 17 (of 17 total)
  • Hi @alwayspaws! Thanks for writing back!

    You were close! Instead of storefront_new_in_products you should use storefront_recent_products

    So, can you give the following a try, please?

    <?php
    add_action( 'wp_enqueue_scripts', 'storefront_child_enqueue_styles' );
    function storefront_child_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    }
    function remove_storefront_home_sections( $args ) {
    remove_action( 'homepage', 'storefront_recent_products', 30 );
    remove_action( 'homepage', 'storefront_featured_products', 40 );
    remove_action( 'homepage', 'storefront_popular_products', 50 );
    remove_action( 'homepage', 'storefront_on_sale_products', 60 );
    remove_action( 'homepage', 'storefront_best_selling_products', 70 );
    }
    add_action( 'after_setup_theme', 'remove_storefront_home_sections' );

    I hope it helps and let us know how it goes!

    My very best,

    Thread Starter alwayspaws

    (@alwayspaws)

    Hi @chiape Andre!

    Thanks for fixing the code for me. It works great!

    Now the “New In” section is gone. BTW, Sublime “remembered” me and opened the file immediately. (I originally asked what to use to edit the php file).

    Thank you to everyone who helped me out!

    Best of everything,

    Stephanie

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Extra Unwanted product-related sections on homepage’ is closed to new replies.