Hi pac918
Thank you for using my plugin.
Inside the includes/js
folder in my plugin is a file called flexslider.js
. If you copy that to your theme’s folder and rename it to arconix-flexslider.js
, my plugin will load that file instead of the plugin file so you can make changes without losing those changes when I upgrade the plugin.
In that js file (open it in a text editor) you’ll see the following:
jQuery(window).load(function() {
jQuery('.flexslider').flexslider( {
pauseOnHover: true,
controlsContainer: ".flex-container"
} );
} );
Add a comma at the end of the controlsContainer
line and add properties for slideshowSpeed
to control the amount of time between each slide. You can also play with the animationSpeed
which controls the length of time the transition between slides takes (it’s more apparent if you change the animation from the default of fade
to slide
. Please note all times are represented in milliseconds, so 7000 milliseconds is 7 seconds.
Example:
jQuery(window).load(function() {
jQuery('.flexslider').flexslider( {
pauseOnHover: true,
controlsContainer: ".flex-container",
slideshowSpeed: 7000,
animationSpeed: 1000,
animation: "slide"
} );
} );
As to the second part of your question — are you showing the content or the excerpt?