Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #483032

    Need to remove the backlink promo from the socket.

    I know this can be acheived temporarily by editing the core footer.php file or appending [nolink] to the custom message these workarounds could be easily / accidentally over-ridden by a theme update or if the copyright message is changed through the admin UI.

    The only reliable and permanent method, and by far the best, would be to filter this in the child theme functions.php as suggested in the footer.php notes – so would be most grateful if you could provide the function snippet required.

    Many Thanks.

    #483355

    Hi M1000000!

    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

    #483358

    That’s perfect – thanks Yigit!

    #483359

    Hey!

    You are welcome, we are always happy to help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘add_filter function to filter and remove the backlink’ is closed to new replies.