How to Change Hestia Pro Slider Speed
Hestia Pro adds a carousel to the header of your website which slides every 10 seconds. The time interval can be really slow for some sites but it can be changed with some JavaScript.
You need to install any plugin to add JavaScript to your website, and we recommend Custom CSS and JavaScript plugin for this tutorial.
After installing the plugin, you need to navigate to Appearance > Custom JavaScript, and add the following JavaScript to there:
jQuery( window ).load(function () { if ( jQuery( '.carousel' ).length > 0 ) { jQuery( '.carousel' ).data()['bs.carousel'].options.interval = 10000; } });
You can change the interval time from 10000 milliseconds (10 seconds) to your preferred time interval.