• I want to change the footer of the Conica theme to say:

    ©2016 m83528.com, an online distribution center for Ja-Bar Silicone Corporation

    I know that the following code needs to change but I can’t quite get it right as I end up losing the footer altogether and also the homepage link in the nav menu.

    <?php printf( __( ‘Theme: %1$s by %2$s’, ‘conica’ ), ‘Conica‘, ‘Kaira‘ ); ?>

    Can anyone help with this? I may even want to add more text/more links than I already mentioned.

    Thank you so much!
    Linda

Viewing 2 replies - 1 through 2 (of 2 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello lindacarey,

    Add below code into functions.php file.

    
      add_action( 'conica_footer_bottombar_left', 'footer_text');
      function footer_text(){
        $data = '<div class="footer-text">&copy'.date('Y').' '.__('an online distribution center for', 'conica').' <a href="https://www.ja-bar.com/">Ja-Bar Silicone Corporation</a></div>';
        echo $data;
      }
    

    Note : All Changes you done in functions.php or other file are gone when you update theme. So prefer Child Theme

    Hope this will helps you.

    Thread Starter lindacarey

    (@lindacarey)

    Thank you sooooo much!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Changing the Footer’ is closed to new replies.