July 1, 2015 at 6:02 am
#26111
Theme Horse Support Team
Keymaster
Hi ben1,
Actually we don’t have line no 113 inside footer-extension.php. The above code you have provide is at line no 57. Adding the provide code will not affect the entire admin UI. The above code you have provided i just added in my core file.
add_action( 'ambition_footer', 'ambition_footer_info', 30 );
/**
* function to show the footer info, copyright information
*/
function ambition_footer_info() {
//$output = '<div class="copyright">'.__( '©', 'ambition' ).' '.ambition_the_year().' ' .ambition_site_link().' | ' . ' ' .ambition_themehorse_link().' | '.' ' .ambition_wp_link() .'</div><!-- .copyright -->';
$output = '<div class="copyright">'.__( '©', 'ambition' ).' '.ambition_the_year().' ' .ambition_site_link().' | <a href="http://domainnamehere.com/sample-page/">Test Link</a></div><!-- .copyright -->';
echo $output;
}
But there is no any effect. Its working fine. So there may be another issue. The issue is not create by the above provided link.
View this below screenshot and its working fine too.
http://www.awesomescreenshot.com/image/370650/72b04c4c813247e176ae7f16d65d8250
There may be some plugins conflict that you have installed in your dashboard.
Thank you!