is there anyway around updating the footer.php in version 1.55? previous version enabled coding over the below but now not possible.
<?php do_action(‘sydney_before_footer’); ?>
<?php if ( is_active_sidebar( ‘footer-1’ ) ) : ?>
<?php get_sidebar(‘footer’); ?>
<?php endif; ?>
<i class=”fa fa-angle-up”></i>
<footer id=”colophon” class=”site-footer” role=”contentinfo”>
<div class=”site-info container”>
“><?php printf( __( ‘Proudly powered by %s’, ‘sydney’ ), ‘WordPress’ ); ?>
<span class=”sep”> | </span>
<?php printf( __( ‘Theme: %2$s by %1$s.’, ‘sydney’ ), ‘aThemes’, ‘Sydney‘ ); ?>
</div><!– .site-info –>
</footer><!– #colophon –>
<?php do_action(‘sydney_after_footer’); ?>
</div><!– #page –>
<?php wp_footer(); ?>
</body>
</html>