Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #22560

    How do I remove the Kriesi backlink / advertisement in the footer? I’m a bit surprised there’s no simple way to do this in the options.

    Thanks.

    #116181

    Hi franktw,

    You need to add:

    [nolink]

    At the end of the input area for the copyright field in the footer section of the theme options.

    Regards,

    Devin

    #116182

    Thanks! Another quick question. How does one insert the current year next to the copyright?

    #116183

    You would need to add something like the following to the footer.php file. You can’t do it in the control panel

    <?php

    $copyYear = 2001;

    $curYear = date(‘Y’);

    echo $copyYear . (($copyYear != $curYear) ? ‘-‘ . $curYear : ”);

    ?>

    #116184

    As lounge35, there isn’t any shortcode/function for it yet but you can do it with the php snippet he provided.

    #116185

    Ok, thanks. I’ll wait for the shortcode (hopefully by the end of the year :)

    #116186

    Hi!

    Yes or just hardcode/write it into the copyright field – you don’t need to change it very often anyway :)

    Regards,

    Peter

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Remove Kriesi backlink in footer’ is closed to new replies.