Hello!
I am using the Enfold theme and looking to change the “powered by Enfold WordPress Theme” text and link in the footer. How do I go about doing that?
Thank you!
Hi emilyriggio!
Please refer to this post – http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/
Cheers!
Yigit
Hi Yigit!
Will I be able to replace the Kriesi backlink with my own via the method in that post? I only ask because it talks about removing the backlink but does not state how to replace it. Thank you!
Hey!
I see. Please disregard previous message and add following code to Functions.php file in Appearance > Editor
add_filter("kriesi_backlink","new_nolink");
function new_nolink(){
$kriesi_at_backlink = "<a href='http://kriesi.at'>Your text here</a> ";
return $kriesi_at_backlink;
}
Cheers!
Yigit