Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #566504

    Dear all,
    How can I remove the following text within the socket.

    Currently
    © Copyright – world2cycle – Enfold Theme by Kriesi

    If possible I would like to have the following displayed
    © Copyright – world2cycle

    As you can see. I went to the Enfold and then to Footer. There I found the Copyright option, but somehow it adds Enfold Theme by Kriesi.

    #566629

    Hi michael_world2cycle!

    In your WordPress theme directory open Enfold folder and Footer.php file. Find following code in line 96
    <?php echo $copyright . $kriesi_at_backlink; ?>
    and change it to
    <?php echo $copyright; ?>

    Or as was mentioned above you can add [nolink] to the custom copyright field in the footer theme options.

    Best regards,
    Basilis

    #566747

    Thanks. Issue solved :-)

    #566888

    Hi,

    Great, glad we could help. You could also add the following to the copyright field for the same result:

    [nolink]
    

    Thanks,
    Rikard

    #571649

    Items resolved.
    Thanks for the support :-)

    #571655

    Hi!

    You are welcome, we are always happy to help :)
    For future readers, for the information and not to break the combo started by my teammates, you can also 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 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Socket remove’ is closed to new replies.