Skip to content

How to disable animations in Hestia

You might want to turn off the animations which we added to Hestia. If using a  child theme the change can be done by entering the following code in your functions.php file.

📝 Note: Scroll animations are a Hestia Pro feature. On the free version of Hestia there are no scroll animations, so this filter has no effect there.

function hestia_maybe_enable_animations(){
return false;
}
add_filter( 'hestia_enable_animations', 'hestia_maybe_enable_animations' );

You can also make the change by downloading and installing the following plugin:

disable_hestia_animations.zip

Was this helpful?