• Resolved doug2523

    (@doug2523)


    I’m new at this (first post) I understand that it’s allowed to remove the footer credit from the theme I am using (Customizr) however when I try I get an error 500 and had to start all over again.

    Could someone help show me precisely which code I am supposed to change? I set up a child theme and know how to find the “Customizr: class-footer-footer_main.php (parts/class-footer-footer_main.php)” but I don’t know what to change or can I do it somehow in the child theme?

    Any help would be appreciated, I’ve spent like 4 hours trying to figure this out ??

    Thanks;

    Doug.

Viewing 3 replies - 1 through 3 (of 3 total)
  • https://www.themesandco.com/snippet/altering-adding-footer-credits/
    Follow those instrunctions. Put that code in your child theme functions.php .

    Basically if you don’t want show any credit at all, just change that function this way:

    add_filter('tc_credits_display', 'my_custom_credits');
    function my_custom_credits(){
    return '
    <div class="span4 credits">
                        <p> &middot; &copy; '.esc_attr( date( 'Y' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> &middot; </p>        </div>';
    }

    Hope this helps

    Thread Starter doug2523

    (@doug2523)

    Thanks very much ! I love the theme however I’m thinking when it says “Designed by Themes &co” people will think they built the entire site ??

    Just wanted to change the wording a little…

    Thanks again !

    glad to have been helpful

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to remove footer credit’ is closed to new replies.