How to Remove Built With GeneratePress Footer Text? (With & Without Coding)

how-to-remove-built-with-generatepress

Do you want to learn how to remove the “Built With GeneratePress” text from the theme footer? I will explain several methods for doing it. I appreciate your interest in changing the footer of your website to boost your business brand. 

I’ve used this lightweight WordPress theme to design attractive websites for over five years. Hence, I can guide you properly in changing the footer credits of the GeneratePress theme. All the methods are straightforward; you can complete them on your own.

Let’s get into the details of removing the author credit in the WordPress GeneratePress theme!

Disclosure: We get a commission when you buy a product via our affiliate link at no additional cost.

Method 1 – Customize GeneratePress Premium Version

How do you edit the GeneratePress Footer Copyright credits? Here is the quick answer to customize the WordPress footer!

I suggest purchasing the premium version of the GeneratePress theme to simplify the task.

If you are using the free version, refer to the comparison, “GeneratePress Free Vs Premium,” to identify the key features of the paid version. 

Let’s go through the step-by-step process to modify the footer text of the GP WordPress theme. 

Step 1: Visit WordPress Dashboard > Appearance > Customize 

wordpress-theme-customize

Step 2: Now, Go to Layout > Footer

footer-layout-settings

Step 3: You can see the “Copyright” section and write the text you want there. 

copyright-footer-settings

Take the example of my blog! 

I have written – © 2016 – 2024 WPGLOSSY All Rights Reserved.

Use the same code shown in the above image, and don’t forget to replace my details with your desired text. 

Adding the HTML code to include your site link in the Footer is possible. If you want to do it, use the code below in the “Copyright” footer section. 

Example:

<p>© 2016 - 2024 <a href="https://www.wpglossy.com/" target="_blank" rel="noreferrer noopener">WPGLOSSY</a>  All Rights Reserved</p>

Before removing Built with GeneratePress

before changing author credit generatepress

After Removing Built With GeneratePress

after changing generatepress footer credit

Method 2: Add Function Code In GeneratePress Child Theme

Step 1: To use this method, you must first install the child theme for the GeneratePress footer copyright removal task.

Step 2: Add the following function code to the theme function file. 

Code:

add_filter( 'generate_copyright','tu_custom_copyright' ); 

function tu_custom_copyright() { 

?> 

© 2016 - 2024 WPGLOSSY All Rights Reserved

<?php

 }

Note – Change the copyright text to match your requirements in the above code. 

Let me tell you how to add the code to the function file!

Step 3: Visit WordPress Dashboard > Appearance > Theme File Editor

wordpress-theme-file-editor

Step 4: Select the Theme to edit (GeneratePress child theme). Click the Theme function.php file, paste the code given above, and hit “Update File” like the screenshot below.  

add-codes-functions.php-file

Method 3: Use Footer Function code in GeneratePress Parent Theme

This method is identical to the previous one. Instead of using a child theme, we will modify the parent theme by adding code to the theme’s function.php file (Follow the same steps as above).

Note – I don’t recommend this method because you must redo this process whenever you update the theme. 

Why Customize the Website Footer? 

Website Footer customization has several benefits! 

  • A personalized footer with your logo and brand color to emphasize your identity. If it is well-organized, it will impress your visitors. 
  • An uncluttered footer can serve as a navigator. It will improve the user experience. 
  • Remove the theme credit; Your credibility will be visible when the site bottom is designed with the awards or testimonials. 
  • Adding important links to the end of your site can help search engines index and understand your content more effectively. 
  • This closing area can include your call-to-action or exclusive offers to encourage readers to take action.  

How To Remove Built With GeneratePress – FAQs

Let me answer some common queries related to hide “Powered by GeneratePress” in the WordPress footer section.

1. Which plugin can Do GeneratePress Footer Copyright Remove?

If you use the free version of GeneratePress, use the Real-Time Find and Replace plugin. You must get the code by right-clicking “View Page Source” and replacing it with your code. 

2. How do I remove Powered by GeneratePress easily?

Purchasing the premium is easy to eliminate the Footer text. The premium version has the direct setting to remove the GeneratePress watermark. It is the best way to change the GeneratePress footer message without coding. 

3. Can the Footer credit be removed in the child theme?

Yes, it is possible. I have explained it clearly through a step-by-step process. 

4. How to Remove the theme credit in GeneratePress free version?

You should add the respective codes in the functions.php file or use a plugin to delete the copyright text in free GeneratePress theme.

5. Is there any way to remove the entire Footer bar in GeneratePress? 

You can do it by adding the following code.
add_action( 'after_setup_theme', 'tu_remove_footer_area' );
function tu_remove_footer_area() {
remove_action( 'generate_footer','generate_construct_footer' );
}

Wrapping Up The Ways Of Disabling Footer Attribution In GeneratePress

GeneratePress is an excellent theme made for WordPress with tons of theme customizations to build noticeable websites that can showcase your business brand. The premium version, with its useful functionality features, will take your site to the next level.  

I’m very much interested in writing the GeneratePress tutorials to help users build their dream sites. I hope you learned how to remove “built with GeneratePress” from the footer without using any plugin. Get the premium version to customize your footer through this WordPress Black Friday Deals 2025.

by Anil Agarwal

Anil Agarwal is a full-time blogger and SEO expert with over 20 years of experience in the field. He's one of the well-known bloggers from India who has been featured in major publications like Forbes, HubSpot, Shopify, and Business Insider.

1 thought on “How to Remove Built With GeneratePress Footer Text? (With & Without Coding)”

  1. Thanks for the helpful guide on removing the Built With GeneratePress footer text! As someone passionate about website customization, it’s great to have options both with and without coding.

    Reply

Leave a Comment