Forums
Home / Theme: Customizr / how do i remove Designed by Press Customizr ?
(@memememememe)
9 years, 6 months ago
how do i remove Designed by Press Customizr ?
(@ibogo)
Paste this into functions.php:
add_filter('tc_credits_display', 'my_custom_credits'); function my_custom_credits(){ $credits = ''; $newline_credits = ''; return ' <div class="span4 credits"> <p> · © '.esc_attr( date( 'Y' ) ).' 'Kemmy' · '.($credits ? $credits : 'All Rights Reserved').' ·'.($newline_credits ? '<br />· '.$newline_credits.' ·' : '').'</p> </div>'; }
didnt work, still the same. where exactly in functions php does it go? do i need to add anything else
paste this instead:
add_filter('tc_credits_display', 'my_custom_credits'); function my_custom_credits(){ $credits = ''; $newline_credits = ''; return ' <div class="span4 credits"> <p>· ? 2015 Kemmy · All Rights Reserved ·</p> </div>'; }
this works 100% as i just tested it
Child theme: paste in blank space at bottom
No child theme: paste in middle after introduction text
mwah! Thanks that worked!