• Resolved Philip

    (@wequitourjobsforthis)


    Recently while updating/tinkering with my site, all these additional menus that have never been displayed before just showed up. I cannot find a setting within WordPress Customize or Elementor to get rid of the “Shop by Category,” “New In,” or “Best Sellers” on the lower half of my homepage. I want the homepage to stop after “Made in St. Petersburg, Florida” and the copyright the way it was before.

    Is there a setting somewhere that got changed/refreshed? How can I eliminate these from the homepage? Thanks!

    -philip

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

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi,

    These elements are added if you use the “homepage template” in Storefront. Switching to default template should give you the option to build the page as you would normally do.

    Annie

    Thread Starter Philip

    (@wequitourjobsforthis)

    that worked! thank you!

    Great, glad this works for you!

    Annie

    Hi!
    The same problem. Where i can switch it? Can’t find. Thanks!

    Towhid

    (@cryptex_vinci)

    Hi

    You can change this section header by using filters provided with Storefront. For example, if you want to change the section title of Homepage Featured Products, insert this in your themes functions.php

    add_filter( 'storefront_featured_products_args', 'custom_storefront_product_featured_title');
    
    // Frontpage Featured Products Title
    function custom_storefront_product_featured_title( $args ) {
        $args['title'] = __( 'New Featured Products Title Here', 'storefront' );
        return $args;  
    }

    Here is a detailed tutorial on customizing Storefront Homepage.

    Thanks

    I want to remove ‘Recommended Products’ section from home page.How can I do this? Please guide me.Thanks.

    how do you change the storefront template?

    • This reply was modified 6 years, 11 months ago by deiplz.

    how do you change the storefront template?

    Assuming that you have a static home page:

    1. From WP admin, select “Pages”;
    2. Find the page that is your home page (it should be labelled “Front Page”) and click “Edit”;
    3. In the box “Page Attributes”, under “Templates”, select “Default Template”;
    4. Click “Update”;
    5. The product recommendations etc should now no longer be on your home page.

    You can also do the above using “Quick Edit” to edit the page, rather than “Edit”.

    What is the correct way to remove the title *just* for the home page?

    add_filter( 'storefront_featured_products_args', 'custom_storefront_product_featured_title');
    
    // Frontpage Featured Products Title
    function custom_storefront_product_featured_title( $args ) {
        $args['title'] = __( 'New Featured Products Title Here', 'storefront' );
        return $args;  
    }

    Similar to this, but removing the title all together. I could obviously do it with CSS or js, but I’d like to essentially remove the section-title all together via filter.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘How to remove “Shop by Category” etc. from homepage’ is closed to new replies.