Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Hi there guys,
There’s a question how to remove footer link without using CSS?
Thanks.
Hey voldemarasp!
Please see – http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/
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