Footer is not displayed after update 2.0.47 with Avada
-
in version 2.0.47 you introduced this support for Avada but the footer is not displayed using Avada. The previous version is fully functional
/** * Avada Theme with Fusion Core/Builder Plugin Compatibility * remove duplicate eztoc containers * in footer sections * @since 2.0.47 */ if ( 'Avada' == apply_filters( 'current_theme', get_option( 'current_theme' ) ) && in_array( 'fusion-builder/fusion-builder.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { add_action( 'avada_render_footer', 'ez_toc_remove_the_footer_content', -1 ); function ez_toc_remove_the_footer_content() { remove_filter( 'the_content', array( 'ezTOC', 'the_content' ), 100 ); } add_action( 'avada_render_footer', 'ez_toc_remove_the_footer_content_after', 11 ); function ez_toc_remove_the_footer_content_after() { add_filter( 'the_content', array( 'ezTOC', 'the_content' ), 100 ); } }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Footer is not displayed after update 2.0.47 with Avada’ is closed to new replies.