This is the code footer.php
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<?php
/**
* The template for displaying the footer.
*
*
* @package Customizr
* @since Customizr 3.0
*/
do_action( '__before_footer' );
?>
<!-- FOOTER -->
<footer id="footer" class="<?php echo tc__f('tc_footer_classes', '') ?>">
<?php do_action( '__footer' ); // hook of footer widget and colophon?>
</footer>
<?php
wp_footer(); //do not remove, used by the theme and many plugins
do_action( '__after_footer' );
?>
</body>
<?php do_action( '__after_body' ); ?>
</html>
Where do I edit.
A developer once told me to add this code to the functions.php in my child theme, I did that but it didn"t work.
add_filter('tc_credits_display', 'my_custom_credits');
function my_custom_credits(){
$credits = '? Copyright <?php print date("Y") ?> Broadband technologies Inc, Nigeria';
$newline_credits = '';
return '
<div class="span4 credits">
<p> · ? '.esc_attr( date( 'Y' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> · '.($credits ? $credits : 'Designed by <a href="https://www.themesandco.com/">Themes & Co</a>').' ·'.($newline_credits ? '· '.$newline_credits.' ·' : '').'</p> </div>';
}