Dear all,
How can I remove the following text within the socket.
Currently
© Copyright – world2cycle – Enfold Theme by Kriesi
If possible I would like to have the following displayed
© Copyright – world2cycle
As you can see. I went to the Enfold and then to Footer. There I found the Copyright option, but somehow it adds Enfold Theme by Kriesi.
Hi michael_world2cycle!
In your WordPress theme directory open Enfold folder and Footer.php file. Find following code in line 96
<?php echo $copyright . $kriesi_at_backlink; ?>
and change it to
<?php echo $copyright; ?>
Or as was mentioned above you can add [nolink] to the custom copyright field in the footer theme options.
Best regards,
Basilis
Thanks. Issue solved :-)
Hi,
Great, glad we could help. You could also add the following to the copyright field for the same result:
[nolink]
Thanks,
Rikard
Items resolved.
Thanks for the support :-)
Hi!
You are welcome, we are always happy to help :)
For future readers, for the information and not to break the combo started by my teammates, you can also add following code to Functions.php file in Appearance > Editor :)
add_filter("kriesi_backlink","new_link");
function new_link(){
$kriesi_at_backlink = "";
return $kriesi_at_backlink;
}
Regards,
Yigit