Tagged: copyright
I would like to remove the ” – Enfold Child Theme by Kreisi” in the copyright footer, please.
Hey veritywebsolutions!
Thank you for using our theme.
In functions.php of the child theme insert at the bottom:
function my_backlink ( $link )
{
return '';
}
add_filter( 'kriesi_backlink', 'my_backlink', 10, 1);
Best regards,
Günter
Thank you! Worked perfectly!
Also, how can I add a link to the copyright footer (example: Powered by Verity Web Solutions — with Verity Web Solutions being a link)?
Hey!
Please go to Enfold theme options > Footer and insert your text in “Copyright” field
Cheers!
Yigit
I did, but there is no option for a hyperlink.
Hi!
You have to enter the html code like:
Powered by <a href="http://xxx.com" target="_blank">Verity Web Solutions</a>
Best regards,
Günter
Oh thank you! I didn’t even think of that.