• Resolved drmcmoody

    (@drmcmoody)


    How do I change the copyright footer at the bottom of the page at https://www.juicedoctors.com? I would appreciate any help. I love this theme but my inability over the past several months to figure out how to do this is making me consider using a different theme. Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Silkalns

    (@silkalns)

    Copyright related code is located in footer-extensions.php that you can find in theme folder – library – structure.

    Thread Starter drmcmoody

    (@drmcmoody)

    Thank you for the reply. After much looking, I cannot find the location that you are referring to. When I go into WordPress and go under “Themes” I cannot find “library” or “structure.” Could you please tell me specifically where I can find this so I may change the copyright footer? Thank you for your help!

    Theme Author Silkalns

    (@silkalns)

    This file can be accessed only via FTP client such as FileZilla where you should look for travelify folder -> library -> structure.

    Hi,

    Silkalns is right.

    You can find copyright related code in footer-extensions.php.

    To access that you need to access that file via FTP client.

    After you login your FTP account,

    STEP 1 – Go to wp-content folder in your public_html folder or wherever you have installed wp

    STEP 2 – Then Go to themes folder

    STEP 3 – Then Go to travelify folder

    STEP 4 – Then Go to library folder

    STEP 5 – Then Go to structure folder

    Here you will see THREE different php files… one of them is footer-extensions.php

    On line#67 you will find function : function travelify_footer_info()

    This contains copyright footer info.

    Hope this will help you.

    Cheers ??

    Tejas

    Another way is to create a child theme and in the function php paste this code:

    <?php //Opening PHP tag
    
    // Remove old copyright text
    add_action( 'init' , 'mh_remove_copy' , 15 );
    function mh_remove_copy() {
            remove_action( 'travelify_footer', 'travelify_footer_info', 30 );
    }
    
    // Add my own copyright text
    add_action( 'travelify_footer' , 'mh_footer_info' , 30 );
    function mh_footer_info() {
       $output = '<div class="copyright">'.'Copyright [the-year] [site-link] Powered by: WordPress'.'</div><!-- .copyright -->';
       echo do_shortcode( $output );
    }
    
    //Closing PHP tag
    ?>

    Ho also another tips I just found out tonight – into your footer if you wanted different style,color or bold here is what you put

    <p style=”font-family:calibri; font-size:17px; color:blue;”><b>

    </b></body>

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