hi, on this page below the data has disappeared from the footer
the same data in the footer works correctly: https://www.maxcoppeta.it/exhibitions/
you can help me?
Thanks :)
Hey,
Please edit your column elements and choose not to display animation. Since your content is at the very bottom of the page, animation is not being triggered :)
Best regards,
Yigit
Hi :)
can’t you fix this bug?
Hi,
Your footer looks the same on my end on both the pages you linked to, could you try to explain the problem a bit further or post a screenshot highlighting it please?
Best regards,
Rikard
Hi,
1- Please download pre-built Enfold child theme here – https://kriesi.at/documentation/enfold/child-theme/ and after activating go to Enfold child theme options > Import & Export and import parent theme settings. You may need to save theme options to make sure styles are loaded correctly.
2- Copy /enfold/js/shortcodes.js file and paste it into /enfold-child/js/ folder
3- Add following code to functions.php file of your child theme
function wp_change_shortcodesjs() {
wp_dequeue_script( 'avia-shortcodes' );
wp_enqueue_script( 'avia-shortcodes-child', get_stylesheet_directory_uri().'/js/shortcodes.js', array('jquery'), 2, true );
}
add_action( 'wp_print_scripts', 'wp_change_shortcodesjs', 100 );
4- Open shortcodes.js file on your child theme and find
$('.av-animated-generic', container).avia_waypoints({ offset: '95%'});
and change it to following
$('.av-animated-generic', container).avia_waypoints({ offset: '100%'});
Content is animated when in viewport and since your content is at the very bottom of your page, increasing offset number should help :)
Best regards,
Yigit