Make the Footer Copyright a link

Home Forums All Other Themes Make the Footer Copyright a link

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #66374
    RossRoss
    Member
    • Topics: 5
    • Replies: 12
    • Total: 17
    Member since: January 18, 2017

    Hi,

    Is it possible to make the Footer Copyright in I Am One (Pro) a link, please? The Footer Text above it has that functionality.

    See site: http://www.knight-graphics.co.uk/dev/

    Ta,

    Ross

    #66407
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30666
    • Total: 30666
    Member since: August 16, 2013

    Hi Ross,

    Kindly go to footer.php and add anchor tag to copyright text from there.

    Regards,
    Dave

    #66475
    RossRoss
    Member
    • Topics: 5
    • Replies: 12
    • Total: 17
    Member since: January 18, 2017

    Just tried that Dave, got a 404. My fault, I’m sure!

    http://www.knight-graphics.co.uk

    The ‘Knight Graphics’ footer link pitches you back to the top, which is great. Can you tell me what I need to do with this lot please, to make the Copyright text link to askymoreblue.com ?

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the #content div and all content after
    *
    * @package SKT I Am One
    */
    ?>

    <div id=”footer”>
    <div class=”footer-inner middle-align”>
    <?php if(! dynamic_sidebar(‘sidebar-2’)) { ?>
    <div class=”title”><?php if(of_get_option(‘footertext’,true) != ”){ echo of_get_option(‘footertext’,true);}; ?></div>
    <?php } ?>
    <p><?php if(of_get_option(‘copytext’,true) != ”){echo of_get_option(‘copytext’,true);}; ?></p>
    </div><!– footer-inner –>
    </div><!– footer –>
    </div><!– main-container –>

    <?php wp_footer(); ?>

    </body>
    </html>

    #66476
    RossRoss
    Member
    • Topics: 5
    • Replies: 12
    • Total: 17
    Member since: January 18, 2017

    Just discovered the ‘Knight Graphics’ footer link pitches you back to the top of the page you’re on, not the top of home. I’ve stripped something out :/ Help!

    #66484
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30666
    • Total: 30666
    Member since: August 16, 2013

    Hi Ross,

    Here is the code of footer.php

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the #content div and all content after
    *
    * @package SKT I Am One
    */
    ?>
    
    <div id="footer">
    <div class="footer-inner middle-align">
    <?php if(! dynamic_sidebar('sidebar-2')) { ?>
    <div class="title"><?php if(of_get_option('footertext',true) != ''){ echo of_get_option('footertext',true);}; ?></div>
    <?php } ?>
    <p>site by <a href="http://askymoreblue.com/">askymoreblue.com</a></p>
    </div><!– footer-inner –>
    </div><!– footer –>
    </div><!– main-container –>
    
    <?php wp_footer(); ?>
    
    </body>
    </html>

    Regards,
    Dave

    #66506
    RossRoss
    Member
    • Topics: 5
    • Replies: 12
    • Total: 17
    Member since: January 18, 2017

    Cheers Dave. That fixed the clickable copyright link.

    However the ‘Knight Graphics’ footer link is no longer clickable – I need that to return every page to the top of home.

    http://www.knight-graphics.co.uk

    Ta,

    Ross

    #66574
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30666
    • Total: 30666
    Member since: August 16, 2013

    Hi Ross,

    Replace the footer.php with this code:

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the #content div and all content after
    *
    * @package SKT I Am One
    */
    ?>
    
    <div id="footer">
    <div class="footer-inner middle-align">
    <?php if(! dynamic_sidebar('sidebar-2')) { ?>
    <a href="http://www.knight-graphics.co.uk/"><div class="title"><?php if(of_get_option('footertext',true) != ''){ echo of_get_option('footertext',true);}; ?></div></a>
    <?php } ?>
    <p>site by <a href="http://askymoreblue.com/">askymoreblue.com</a></p>
    </div><!– footer-inner –>
    </div><!– footer –>
    </div><!– main-container –>
    
    <?php wp_footer(); ?>
    
    </body>
    </html>

    Regards,
    Dave

    #66584
    RossRoss
    Member
    • Topics: 5
    • Replies: 12
    • Total: 17
    Member since: January 18, 2017

    Tried that Dave, functionality is spot on but it changed all the footer text colour from white to blue.

    Even when I added <font color=”ffffff”> blah </font> it made no difference.

    Any ideas?

    Ross

    #66588
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30666
    • Total: 30666
    Member since: August 16, 2013

    Hi Ross,

    After adding the given code add this code in Custom CSS Box:

    #footer .footer-inner .title a{color:#ffffff !important;}

    Regards,
    Dave

    #66666
    RossRoss
    Member
    • Topics: 5
    • Replies: 12
    • Total: 17
    Member since: January 18, 2017

    Sorted! Thanks for your patience Dave.

    Ross

    #66777
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30666
    • Total: 30666
    Member since: August 16, 2013

    If you found our service good kindly review us here:
    https://www.sktthemes.org/forums/topic/reviews-and-testimonials/

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Make the Footer Copyright a link’ is closed to new replies.