Hestia is a feature rich, highly customizable, fully responsive and beautiful looking WordPress theme. It is offered in FREE as well as Premium version.
I have worked with the theme and created a blog of mine using this WordPress theme.
The theme Hestia offers a fully flexible and easy to work with theme which loads quite fast and is SEO friendly too.
The only thing I disliked about the theme is its footer credit which you do not get an option to remove and replace with your website copyright thing.
Remove Footer Credit of the Theme Hestia
After a lot of research and experimenting with the codes, finally, I found a way to remove theme’s footer credit and replace it with my site’s copyright line.
I assume that you have already installed the theme. So, here’s how I did it…
Step 1:
First of all, login to your website wp-admin and open editor by going into Appearence > Editor
Step 2:
After opening the editor, from right side, expand the folder called inc by clicking the small arrow ahead of it.

Step 3:
After going to inc folder, scroll down and click on template-tags.php
Step 4:
A editor window with template-tag.php will open, scroll down until you find the code as shown below (which you’ll find around the line 780).

The image above includes the code:
$hestia_general_credits = get_theme_mod(
'hestia_general_credits',
sprintf(
/* translators: %1$s is Theme Name, %2$s is WordPress */
esc_html__( '%1$s | Powered by %2$s', 'hestia' ),
sprintf(
/* translators: %s is Theme name */
'<a href="https://themeisle.com/themes/hestia/" target="_blank" rel="nofollow">%s</a>',
esc_html__( 'Hestia', 'hestia' ) ),
/* translators: %s is WordPress */
sprintf(
'<a href="%1$s" rel="nofollow">%2$s</a>',
esc_url( __( 'http://wordpress.org', 'hestia' ) ),
esc_html__( 'WordPress', 'hestia' ) ) ) );
Step 5:
You can edit the code and get the desired result (if you know coding).
If you want to know what I did, then… I will show you what did I do.
(Please do not laugh, I’m not a coder 😉 )
$hestia_general_credits = get_theme_mod(
'hestia_general_credits',
sprintf(
/* translators: %1$s is Theme Name, %2$s is WordPress */
esc_html__( 'Copyright © 2018 | %2$s', 'hestia' ),
sprintf(
/* translators: %s is Theme name */
'<a href="http://yourwebsite.com/" target="_blank" rel="nofollow">%s</a>',
esc_html__( 'YourWebsite', 'hestia' ) ),
/* translators: %s is WordPress */
sprintf(
'<a href="%1$s" rel="nofollow">%2$s</a>',
esc_url( __( 'http://yourwebsite.com/', 'hestia' ) ),
esc_html__( 'YourWebsite', 'hestia' ) ) ) );
I did as above which you can see in the image below:

Did it work?
Voila!!!
You have now added the footer text that you wanted by removing the previous default footer credit of the WordPress theme Hestia.
Looking to Remove the Footer Credits of the Newer Version of Hestia 2.0.4?
Well, I found a similar post which shows you the ways to remove the Footer Credits from the WordPress theme Hestia Version 2.0.4 Onward.
Check this out:
Remove Footer Credits of the WordPress Theme Hestia 2.0.4
Got a better solution?
Let me and others know in the comment section below.
6 replies on “Remove Footer Credit of the WordPress Theme Hestia”
Much easier from the Hestia custom codes section…………………………………
If you’d like to hide the footer credits in Hestia then please navigate to Appearance -> Customize -> Additional CSS section and add the following code:
.copyright.pull-right {
display: none;
}
LikeLike
Yes, that works.
But I have written this post to show the custom copyright text in the footer. Not just to hide the footer text.
LikeLike
I keep changing the code in the class-hestia-footer.php but the theme keeps changing it to the default one. How do I stop this?
LikeLike
Yes, that’s the problem.
If you update the theme then the changes made by you are overwritten.
Avoid updating your theme Hestia OR Try using a Child Theme which might help.
Thanks
LikeLike
[…] Recommended Read: Remove Footer Credit from the WordPress Theme Hestia […]
LikeLike
/wp-content/themes/hestia/inc/views/main/class-hestia-footer.php
Line: 133 – 139 🙂 02.05.2019
LikeLiked by 1 person