Are you searching for a detailed tutorial on how to remove footer copyright text from GeneratePress Theme?
In this tutorial, I am going to show you how you can remove powered by generatepress copyright text from generatepress free and premium themes.
When you install the theme you get footer copyright text by default in your website footer and you can’t remove this text until you purchase the premium theme.
Because there is an option to remove powered by Generatepress text from the premium Genereatepress theme.
But if you use a free theme you can’t change it from settings.
However, I can remove this copyrighted text without installing any additional plugins on your WordPress website.
So, without further delay let’s get started.
How To Remove Powered by GeneratePress in Premium Theme?
So, first I am going to tell you how you can remove the powered by Generatepress text from the premium Generatepress theme.
You don’t need any additional code to remove powered by GeneratePress theme from your website footer.
You can remove it from your website customization settings area.
Step 1: To do this first you need to log in to your WordPress website and click on appearance > customize.

Step 2: Now, click on Layout > Footer to see the copyright box where your copyright text is already written.

You can change this text and write whatever you want in your footer. Make sure to click on the update button once you have done the editing.
This is how you can change the footer copyright text in the GeneratePress premium theme without using a code.
How To Remove Powered by GeneratePress in Free Theme?
It’s too simple to remove footer copyright text from GeneratePress premium theme but what about the free theme?
There is no option in the free theme to remove the footer text. But don’t worry you don’t need to buy the premium theme for this little thing.
So, to change the footer copyright text from the free theme you need a small code that you need to paste on your website theme editor file under function.php.
Follow the below steps to remove the footer copyright text in the GeneratePress theme:
Step 1: Log in to your website’s WordPress dashboard and click on the Appearance > Theme file editor.

Step 2: Select your WordPress theme i,e, GeneratePress, and navigate the function.php file in the theme files given below.

Step 3: Copy the PHP code given below and paste it into your theme’s functions.php file at the end of the existing code.
add_filter( 'generate_copyright','tu_custom_copyright' );
function tu_custom_copyright() {
?>
WRITE YOUR CUSTOM COPYRIGHT TEXT HERE
<?php
}
Note – Replace the text saying, “WRITE YOUR CUSTOM COPYRIGHT TEXT HERE” with your own custom text. HTML, CSS & PHP codes allowed.
In case you want to delete the GeneratePress footer text completely from your theme then paste the below code at the end of your function.php file.
add_action( 'after_setup_theme', 'tu_remove_footer_area' );
function tu_remove_footer_area() {
remove_action( 'generate_footer','generate_construct_footer' );
}
fter pasting the code, don’t forget to hit the update button.
Now, you have successfully removed or changed the footer copyright text from your GeneratePress theme footer.
Also Read: Hello Theme vs GeneratePress: Which Theme is Best?
FAQs on Remove Footer Copyright Text From GeneratePress
What is a GeneratePress Theme?
GeneratePress is a lightweight, responsive WordPress theme designed for speed, usability, and customization. It is popular among developers and users for its flexibility and compatibility with page builders like Elementor, Beaver Builder, and Gutenberg.
How can I remove or edit the footer copyright text in the GeneratePress premium theme?
To remove or edit the footer copyright text in GeneratePress, go to your WordPress dashboard and then Navigate to Appearance > Customize. Click on Layout > Footer and Scroll down to the Footer Bar section. Here, you can customize the text or delete it to remove the copyright information.
Do I need the premium version of GeneratePress to remove the footer copyright?
There’s an option to remove the powered by generatepress text in the premium version but you can also remove it from the free theme by pasting a simple code in your theme’s function.php file.
Can I replace the default copyright text with my own custom message?
Yes, with GeneratePress Premium, you can replace the default copyright message with your custom text. In Appearance > Customize > Layout > Footer, use the Footer Bar text box to add your custom message.
Will removing the footer copyright text affect SEO?
Removing or customizing the footer copyright text typically does not affect SEO. However, the footer often contains valuable site-wide links, so removing these could impact internal linking, which is important for SEO.
What happens if I update GeneratePress after removing the copyright text?
If you’ve used the Customize options or a child theme to make changes, the updates won’t affect your modifications. However, if you edit the theme files directly (without a child theme), the changes will be lost after an update.
Can I remove the copyright text from a child theme in GeneratePress?
Yes, you can customize the footer copyright in a child theme. Edit the footer.php file in your child theme directory or use a PHP filter to change the copyright text.
Conclusion
So, this is how you can change or remove footer copyright credit from your Generatepress free and premium WordPress theme.
I have personally used these steps to remove powered by generatepress text from my own website.
So, don’t hesitate to use the above methods as I personally used this trick and edited my footer text in my GeneratePress free theme.
Let me know in the comments box if you have any questions in your mind.

Keep on writing, great job!