Dear Kriesi Support,
Is there a way to hide the copyright setting in the Enfold settings for Admin users? (So change it by code only). If yes I can grant my customer admin access rights without fearing changing my footprint there.
Thanks in advance for your answer.
Kind regards,
Peter
Hey Peter,
Sorry for the late reply. If you want to make sure that your code stays there I would try editing your footer.php file instead, I think that would be the easiest option to achieve what you are looking for.
Thanks,
Rikard
Thank you Rikard.
Regards,
Peter
Hi!
You can insert your own backlink using following code in Functions.php file in Appearance > Editor
add_filter("kriesi_backlink","new_nolink");
function new_nolink(){
$kriesi_at_backlink = " - <a href='http://kriesi.at' target='_blank'>Here is your new backlink</a>";
return $kriesi_at_backlink;
}
Regards,
Yigit