add_filter('tc_credits_display', 'my_custom_credits');
function my_custom_credits(){
$credits = 'Made by <a href="http://www.maman.com/">Maman</a>';
$newline_credits = 'and designed by <a href="http://www.themesandco.com/">Themes & Co</a>';
return '
<div class="span4 credits">
<p> · © '.esc_attr( date( 'Y' ) ).' </a><a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> · '.($credits ? $credits : 'Designed by <a href="http://www.themesandco.com/">Themes & Co</a>').' ·'.($newline_credits ? '· '.$newline_credits.' ·' : '').'</p> </div>';
}
I found the answer !
Thanks so much :D