I tried pasting the code as text on a widget area but does not work.
Then I tried inserting the code in footer.php, just before the line with <!– FOOTER –> but has not worked.
It works only if insert the code this way:
<?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>
</div><!-- //#tc-page-wrapper -->
<?php
do_action( '__after_page_wrap' );
<script type="text/javascript">
jQuery(document).ready( function() {
jQuery('a.wp-booklet-popup-trigger').addClass('nofancybox');
}
</script>
wp_footer(); //do not remove, used by the theme and many plugins
do_action( '__after_footer' ); ?>
</body>
<?php do_action( '__after_body' ); ?>
</html>
But the problem is that now the footer disappears.