<p>Hi</p><p>about the copyright, I want to delete Enfold Child Theme by Kriesi, just see the picture attached.</p><p>Pls tell me how, thanks</p><p></p><p></p>
Hi mandyluv2lol!
Please see – http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/
Regards,
Yigit
Hi Yigit,
Removing the Backlink to Kriesi.at
If you want to remove the Kriesi.at backlink that is applied by default make sure to append the [nolink] shortcode at the end.
I’m very sorry that I don’t know how to write the code.
Could you tell me the complete code?
Thanks:)
Hi!
You can simply add [nolink] to copyright field in Enfold theme options > Footer. If you would like to remove backlink using a functions, please 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;
}
Cheers!
Yigit