March 23, 2015 at 5:33 am
#23367
Theme Horse Support Team
Keymaster
Hi downtownuk,
Once check in your child theme under functions.php on line no 11. I think there you have defined other functions.
// Unhook default Thematic functions
function unhook_thematic_functions() {
// Don't forget the position number if the original function has one
remove_action( 'attitude_footer', 'attitude_footer_info', 30 );
}
add_action('init','unhook_thematic_functions');
add_action( 'attitude_footer', 'attitude_footer_info', 30 );
/**
* function to show the footer info, copyright information
*/
function attitude_footer_info() {
$output = '<div class="copyright">'.__( 'Copyright ©', 'attitude' ).' '.attitude_the_year().' ' .attitude_site_link().' | ' . ' '.__( 'Theme by:', 'attitude' ).' '.attitude_themehorse_link().' | '.' '.__( 'Powered by:', 'attitude' ).' '.attitude_wp_link() .'</div><!-- .copyright -->';
echo $output;
}
hope this may help you
Thank you!