How to remove 'Enfold WordPress Theme by Kriesi' in the Enfold footer

How to remove the Enfold copyright text 'Enfold WordPress Theme by Kriesi' in the Enfold footer

Premium themes such as Avada, Enfold, BeTheme and Divi offer a theme option to change the copyright text easily. You can add your copyright text from Enfold > Footer >Copyright in Enfold.

However, when you add your copyright text, you will see the phrase 'Enfold WordPress Theme by Kriesi' appearing in the footer.

Enfold WordPress Theme by Kriesi

There are two methods to remove "Enfold WordPress Theme by Kriesi":

Adding [nolink]

The easiest method is to add '[nolink]' as shown below.

Then, the phrase "Enfold WordPress Theme by Kriesi" will disappear.

Editing the footer.php file

The other method is to edit the footer.php file. Please open the footer file and then go to the following line:

<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>

Please remove ". $kriesi_at_backlink".

<span class='copyright'><?php echo $copyright; ?></span>

Please do not forget to create a child theme before editing the footer.php file.


Leave a Comment