How To Hide 2019 Built With Storefront & Woocommerce

# How to Hide “Built with Storefront & WooCommerce” in 2023 (and Why You Should)

Many online store owners choose the powerful combination of Storefront and WooCommerce to build their websites. It’s a fantastic platform, offering ease of use and extensive functionality. However, the default footer often proudly displays “Built with Storefront & WooCommerce.” While this might seem harmless, Learn more about Woocommerce How To Add Video To Product Gallery there are good reasons to remove it. This article will guide you through hiding this attribution, explaining why it’s beneficial and providing straightforward instructions, even for complete beginners.

Why Hide the “Built with Storefront & WooCommerce” Attribution?

Removing the attribution isn’t about hiding your technology; it’s about enhancing your brand identity and improving your website’s professionalism. Here’s why you should consider it:

    • Brand Consistency: The default attribution disrupts the visual uniformity of your store. A clean, consistent look builds trust and professionalism. Imagine a high-end boutique displaying its technical underpinnings – it wouldn’t match the brand image.
    • Competitor Advantage: Your competitors might not be using the same platform. By removing the attribution, you avoid inadvertently highlighting their potential tech advantage.
    • Professionalism: A clean and minimal footer conveys a more professional image. It subtly suggests a more polished and thought-out online presence.
    • SEO (Indirectly): While not a direct SEO factor, a cleaner, more user-friendly design can indirectly improve your SEO by enhancing user experience, leading to lower bounce rates and longer engagement.

    How to Hide the Attribution: Different Approaches

    There are several ways to remove the “Built with Storefront & WooCommerce” attribution. The best method depends on your comfort level with code and your theme’s structure.

    Method 1: Using a Child Theme (Recommended)

    This is the safest and most recommended method. Creating a child theme ensures your customizations survive theme updates. If you update Storefront, your changes won’t be overwritten.

    • Create a Child Theme: This involves creating a new folder (e.g., `storefront-child`) in your `/wp-content/themes/` directory. Inside, create a `style.css` file and a `functions.php` file. The `style.css` file should contain the following (adjust the Theme URI and Description):

    /*

    Theme Name: Storefront Child

    Theme URI: http://yourwebsite.com

    Description: Child theme for Storefront

    Author: Your Name

    Author URI: http://yourwebsite.com

    Template: storefront

    Version: 1.0.0

    */

     remove_action( 'storefront_footer_widgets', 'storefront_footer_widgets' ); // Removes footer widgets remove_action( 'storefront_footer', 'storefront_footer_copyright', 20 ); // Removes the copyright text 

    This code removes the entire footer widgets area, including the copyright Explore this article on How To Link Woocommerce To Instagram line. You can then add your own custom footer content.

    Method 2: Editing the Theme Files (Not Recommended)

    Caution: Directly editing theme files is risky. Theme updates will overwrite your changes. This method is strongly discouraged unless you’re very comfortable with WordPress Check out this post: How To Setup Stripe For Woocommerce and have backed up your files.

    • Locate the relevant file: Find the template file responsible for the footer (usually `footer.php` within your Storefront theme directory).
    • Remove the line: Delete the code that generates “Built with Storefront & WooCommerce.” This line’s location will vary depending on your theme version.

    Method 3: Using a Plugin (Easiest, but Potentially Less Reliable)

    Some plugins claim to customize or remove the footer. While seemingly easy, thoroughly research any plugin before installing it. Read reviews, check its compatibility with your theme and other plugins, and always back up your site.

    Beyond Hiding the Attribution: Customizing Your Footer

    Once you’ve removed the default attribution, you can customize your footer to better represent your brand. You can add:

    • Copyright information: Your company name and year.
    • Contact information: Links to your contact page or social media profiles.
    • Privacy policy and terms of service links: Crucial for legal compliance.
    • Payment logos: To build trust and showcase accepted payment methods.

By taking the time to remove Check out this post: How To Add Variations Of A Single Product Woocommerce the default attribution and customize your footer, you’ll create a more professional and cohesive online experience for your customers, ultimately enhancing your brand and online presence. Remember to always back up your website before making any code changes.

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *