Viewing 4 replies - 1 through 4 (of 4 total)
  • I know no PHP but I managed to remove the credits at the bottom. This is the file I have right now and it works perfectly.

    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' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> &middot; </p> </div>';
    }

    This code will remove the “Designed by themeandco” in the code, not your websites name.

    The original code has the “Designed by themeandco” in the code, I just removed that line at the bottom and got it to work. This will leave you websites name in the footer. If you want to remove the whole credits, I don’t know what you would have to do, sorry.

    Hope this help!

    Forgot to mention, you have to add the above code in your functions PHP file, not on Style.css. In case you didn’t know. ??

    Thread Starter raosistemas

    (@raosistemas)

    Nice… thanks.

    Glad it worked!
    Could you mark this topic as resolved?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Themes & Co watermark’ is closed to new replies.