Hello:
I would like to add an external link in the footer similar to the one that’s there for the back link to Powered by Enfold.
StrongHeartsVeganPower.com is the website.
Thanks!
http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/
http://kriesi.at/documentation/enfold/faq/#nolink
See the links above.
To link the site you mentioned in the footer, you’d have to enter;
<a href='http://StrongHeartsVeganPower.com'>LINK TEXT</a>
You can remove the enfold link by adding [nolink] at the end.
cheers
Hi!
Thank you for using Enfold.
@jbergmeier: You can follow the links suggested by @Flikk.
@Flikk: Thank you. :)
Regards,
Ismael
Thank you, but that’s not what I mean and does not help.
I am looking to link outside of the website to another website.
I.E. – 2014 copyright Strong Hearts Vegan Power – Maintained by Jacob Bergmeier
Hey!
There is a filter that let you control the backlink output, try adding this at the very end of your theme / child theme functions.php file:
function change_backlink() {
$newlink = "- Maintained by <a href='#'>Jacob Bergmeier</a>";
return $newlink;
}
add_filter('kriesi_backlink', 'change_backlink', 10);
Cheers!
Josue
Thank you very much!
Problem solved!
Jacob