Viewing 4 replies - 1 through 4 (of 4 total)
  • 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> &middot; &copy; '.esc_attr( date( 'Y' ) ).' 'Kemmy' &middot; '.($credits ? $credits : 'All Rights Reserved').' &middot;'.($newline_credits ? '<br />&middot; '.$newline_credits.' &middot;' : '').'</p>		</div>';
    }
    Thread Starter memememememe

    (@memememememe)

    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

    Thread Starter memememememe

    (@memememememe)

    mwah! Thanks that worked!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘how do i remove Designed by Press Customizr ?’ is closed to new replies.