• Resolved zeuspress

    (@zeuspress)


    I don’t know how to write code. I’ve tried to use the Customizr documentation on “Altering/adding footer credits” to remove the footer credits completely (not just alter them) but I keep getting 500 errors. Can someone please provide a snippet to remove the credits and tell where the snippet should be placed? I’m using the latest Customizer version and have a Childify-me child theme. Thank you.

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

    (@addweb-solution-pvt-ltd)

    Hello zeuspress,

    => Put below code into your current active theme’s functions.php file located at wp-content/themes/your_current_active_theme/ directory. (Example : wp-content/themes/customizr/).


    add_filter('tc_credits_display', 'remove_credits');
    function remove_credits(){
    return '';
    }

    Hope this will helps you.

    Thread Starter zeuspress

    (@zeuspress)

    Thank you, thank you thank you AddWeb Solution Pvt. Ltd.
    I put the code in my child theme’s functions.php file after going to appearence, then themes and then editor and choosing my child theme. I see your company provides wordpress help. I may need to hire you in the near future. Thanks again.

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Thanks Ron would be glad to work with you anytime. Feel free to contact us.

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