Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #437372

    hi is it possible to create a custom function to go in the child theme functions file that will remove the kresi back link? Rather then having to type [nolink]

    I have a few developers I work with and it is possible they may omit [nolink], if a client sees it it looks a bit unprofessional on our part. Also using a modified footer.php isn’t a good idea because as we update themes our footer.php won’t update so the best solution is via a function.

    Can you advise on one?

    #437377

    Hi codecreative!

    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;
    }

    Regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.