• Resolved dontknowmuch

    (@dontknowmuch)


    Hi,

    finished building the website using this great theme. Just wanted to link the copyright text in the footer to another website. Working with a child theme. I can’t find the copyright text in the stylesheet to add the link. Not in style.css at 15.5 footer menu and neither in footer.php. Got the simple custom css plugin, but i can’t find out wich class i need to add the link to. Tried right clicking on the element in the chrome browser and “inspect” but i can’t identify where i can find the piece of code here.

    Thnx in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Nehul

    (@nehul-patel)

    pls give me your site link

    Theme Author Shaped Pixels

    (@shaped-pixels)

    The code is found in the footer.php file, so you will need to copy the footer.php file into your child theme then look for this:

    <div class="site-info">
              <?php _e('Copyright ?', 'senses-lite'); ?>
              <?php echo date('Y'); ?> <?php echo esc_html(get_theme_mod( 'copyright', 'Your Name' )); ?>.?<?php _e('All rights reserved.', 'senses-lite'); ?>
            </div>

    Wrap this the following code part with a link:

    <?php echo esc_html(get_theme_mod( 'copyright', 'Your Name' )); ?>

    …so it looks like this:

    <a href="your link"><?php echo esc_html(get_theme_mod( 'copyright', 'Your Name' )); ?></a>

    Thread Starter dontknowmuch

    (@dontknowmuch)

    Yes, got it, thnx a lot!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘copyright link’ is closed to new replies.