// Change the footer text.
add_filter('genesis_footer_creds_text', 'ambre_footer_creds_filter');
function ambre_footer_creds_filter( $creds ) {
$creds = 'Copyright [footer_copyright] · Theme</a> by <a href="https://ambrethemes.com/">Ambre Themes</a>';
return $creds;
}