According to the official ThemeIsle Documentation, users are legally permitted under the GPL license to remove or alter these credits
Method 1: Use Custom CSS (Easiest & Safest)
You can visually hide the default text and inject your own custom copyright notice using a small snippet of CSS code. This approach requires no modifications to theme files.
- Navigate to your WordPress dashboard.
- Go to Appearance > Customize.
- Click on Additional CSS.
- Paste the following code into the editor:
css
.copyright {
visibility: hidden;
}
.copyright:after {
content: '© 2026 Your Brand Name. All Rights Reserved.';
visibility: visible;
display: block;
position: absolute;
padding: 5px;
top: 2px;
}
Use code with caution.
- Replace
Your Brand Namewith your real site title. - Click Publish to save changes.
Method 2: Use a Footer-Editing Plugin
If you prefer managing modifications through a graphical interface without dealing with any code snippets, a specialized utility plugin can clear the text automatically.
- Go to Plugins > Add New Plugin in your dashboard.
- Search for a plugin named Remove Powered by WordPress.
- Click Install Now and then Activate.
- Head to Appearance > Customize > Theme Options.
- Check the box labeled Remove powered by WordPress.
- Click Publish.
Method 3: Upgrade to Hestia Pro
The premium version of the theme includes built-in controls directly inside the layout customizer, removing the requirement for plugins or styling tweaks.
- Purchase and install the premium version from ThemeIsle.
- Navigate to Appearance > Customize > Footer Options.
- Locate the Footer Credits configuration panel.
- Modify or completely clear out the standard text using standard HTML text fields.
- Click Publish.
If you need help adjusting the CSS layout values or want a Child Theme functions.php snippet to completely remove the hook from loading, just let me know!