How to Remove “Built with Storefront & WooCommerce” from Your Website
Introduction:
Many businesses choose the Storefront theme and WooCommerce plugin to quickly launch their online stores. It’s a fantastic combination, providing a solid foundation for e-commerce. However, the default footer often displays “Built with Storefront & WooCommerce,” which, while attributing credit, can sometimes detract from a professional, branded look. This article will guide you through how to remove “Built with Storefront & WooCommerce” from your website, giving you complete control over your site’s branding. We’ll cover several methods, from the simplest customization options to more advanced code-based solutions.
Main Part:
There are several ways to remove the “Built with Storefront & WooCommerce” footer text. Choose the method that best suits your Discover insights on How To Change Text Privacy Policy Woocommerce Checkout technical skill level and comfort.
Method 1: Using the WordPress Customizer (Simplest)
This is the easiest method and requires no coding knowledge.
1. Access the WordPress Customizer: Log in to your WordPress dashboard and navigate to Appearance > Customize.
2. Locate the Footer Settings: Within the Customizer, look for sections related to “Footer,” “Footer Bottom,” or something similar. The exact wording might vary slightly depending on your Storefront version and any customizations you’ve already made.
3. Edit the Footer Text: You should find a text area or an option to disable the footer credit text.
- If there’s a text area, simply delete the existing text, including the “Built with Storefront & WooCommerce” phrase.
- If there’s a checkbox or toggle to disable the credit, uncheck or toggle it off.
4. Publish Your Changes: Click the “Publish” button at the top of the Customizer to save your changes and make them live on your website.
Method 2: Using a Child Theme (Recommended for Code Changes)
If you intend to make Explore this article on How To Collect Taxes On Woocommerce For Other Staets more significant modifications to your Storefront theme, creating a child theme is highly recommended. This prevents your changes from being overwritten when the parent theme is updated.
1. Create a Child Theme: If you don’t already have one, create a Storefront child theme. You can find tutorials online on how to do this.
2. Locate the `functions.php` File: In your child theme’s folder, find the `functions.php` file. If it doesn’t exist, create it.
3. Add the Following Code: Open the `functions.php` file and add the following code snippet:
4. Save the File: Save the `functions.php` file.
5. Activate Your Child Theme: Make sure your Storefront child theme is activated in Appearance > Themes.
This code snippet removes the `storefront_credit` function, which is responsible for displaying the “Built with Storefront & WooCommerce” text.
Method 3: Using a Plugin (Alternative to Child Theme)
If you’re hesitant to create a child theme or modify code directly, several plugins Learn more about How To Setup Woocommerce Payment Gateway can help you remove or customize the footer text.
1. Install and Activate Check out this post: How To Do A Test Order In Woocommerce a Plugin: Search for plugins like “Remove Footer Credit,” “Footer Text Customizer,” or similar options in the WordPress plugin repository.
2. Configure the Plugin: Follow the plugin’s instructions to remove or customize the footer text. Most plugins offer a simple interface to achieve this.
Method 4: Using CSS (Hiding the Text
While you *can* hide the text using CSS, this is not the recommended approach. It doesn’t actually remove the code, just hides it from view, which can have minor SEO implications. However, if you absolutely must, you can add the following CSS to your theme’s customizer (Appearance > Customize > Additional CSS):
.site-info {
display: none;
}
Important Considerations:
- SEO: While removing the “Built with Storefront & WooCommerce” text is generally fine, consider adding your own branded copyright information to the footer. This can help with SEO and brand recognition. For example: `© [Your Business Name] [Year]`.
- Updates: If you’re not using a child theme and directly modify the parent theme’s files, Check out this post: Woocommerce How To Include Tracking Number With Order Completion Email your changes will be overwritten when the theme is updated. Always back up your website before making changes.
- Plugin Compatibility: Be mindful of plugin compatibility, especially if you’re using multiple plugins that affect the footer area.
Conslusion:
Removing the “Built with Storefront & WooCommerce” footer text is a simple process that can significantly improve your website’s branding. By choosing the method that best suits your technical skills, you can easily customize your footer and create a more professional and polished online presence. Remember to back up your website before making any changes, and consider using a child theme to protect your customizations from theme updates. Now you can confidently showcase your brand without the default Storefront and WooCommerce attribution!