Home > Software > How to Remove the “Built with GeneratePress” Footer Credit

How to Remove the “Built with GeneratePress” Footer Credit

Anastasios Antoniadis

Discover how to remove the “Built with GeneratePress” footer credit from your website with our easy-to-follow guide. Customize your site’s appearance to match your brand’s identity seamlessly and professionally.

GeneratePress

GeneratePress is a versatile WordPress theme that offers simplicity, speed, and accessibility, making it a popular choice for bloggers, businesses, and developers alike. One of the hallmark features of GeneratePress is its customizability, allowing users to tailor their sites to their specific needs and branding requirements. However, one common customization users often seek is removing or altering the “Built with GeneratePress” footer credit. This article provides a comprehensive guide on removing or replacing this footer credit, ensuring your site reflects your unique brand identity.

Method 1: Using the WordPress Customizer (GeneratePress Premium)

If you’re using GeneratePress Premium, you can easily remove or change the footer credit directly from the WordPress Customizer.

  1. Navigate to the Customizer: Log in to your WordPress dashboard, go to “Appearance” > “Customize” to open the WordPress Customizer.
  2. Access the Layout Settings: In the Customizer, find and click on “Layout” to expand the layout options.
  3. Modify Footer Settings: Within the “Layout” section, click on “Footer.” Here, you can edit or remove the footer credits.
  4. Apply Changes: After making your changes, click the “Publish” button to save your new settings. The “Built with GeneratePress” credit should now be modified or removed based on your preference.

Method 2: Using a Child Theme (Free & Premium)

For those who prefer or need to use code, or if you’re using the free version of GeneratePress, creating a child theme is a reliable way to customize the footer credit.

  1. Create a Child Theme: If you haven’t already, create a child theme for GeneratePress. This involves creating a new theme folder in your wp-content/themes directory, adding a style.css file with theme information, and creating a functions.php file.
  2. Override the Footer: In your child theme’s functions.php file, add the following code to override the default footer credit:
add_action( 'after_setup_theme', 'tu_remove_footer_credit', 10 );

function tu_remove_footer_credit () {
    remove_action( 'generate_footer','generate_construct_footer' );
}

This code removes the action that adds the footer credit, effectively removing the “Built with GeneratePress” text.

  1. Add Custom Footer Credit (Optional): If you wish to add your own footer credit, you can add further code to define a new footer content:
add_action( 'generate_footer', 'tu_custom_footer_credit' );

function tu_custom_footer_credit() {
    ?>
    <div class="footer-credit">
        <p>© <?php echo date('Y'); ?> Your Site Name. All Rights Reserved.</p>
    </div>
    <?php
}

Replace “Your Site Name” with your actual site name or any text you prefer for your custom footer credit.

  1. Activate Your Child Theme: Go back to your WordPress dashboard, navigate to “Appearance” > “Themes,” and activate your GeneratePress child theme.

Conclusion

Either the GeneratePress Premium theme or a custom child theme makes it straightforward to customize the footer credit from “Built with GeneratePress” to something more aligned with your site’s identity or remove it entirely. Both methods offer flexibility in presenting your site’s footer, ensuring it matches your overall branding and style. Remember, while customizing your site, it’s good practice to keep user experience in mind, ensuring that any changes contribute positively to how visitors interact with your site.

Anastasios Antoniadis
Follow me
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x