Hello,
I tried to remove “Enfold WordPress Theme by Kriesi” on footer.
How can I remove it ?
Thank you
Here is some php you can put in the functions.php of your child theme
// Replaces default enfold copyright link
function custom_copyright() {
$kriesi_at_backlink = ” Put your custom content here“;
return $kriesi_at_backlink;
}
add_filter(‘kriesi_backlink’, ‘custom_copyright’);
Otherwise in the theme options put [nolink] within the copyright field I think
Hey bitojoe,
Thanks for the input on this. Both great suggestions.
Best regards,
Jordan Shannon
Thank you for quick reply. :)