-
AuthorPosts
-
February 19, 2016 at 10:07 am #585939
I have the 2 questions regarding the easy slider, they have been asked earlier:
https://kriesi.at/support/topic/easy-slider-auto-resume-after-hover-pause/
The slide advance stops after i use the controls. The solution in https://kriesi.at/support/topic/fullwidth-easy-slider-slide-advance-stops-when-you-use-controls/ is to commenting out the lines this._stopSlideshow(); 4401, 4409 and 4431 in /enfold/js/shortcodes.js.
But these lines don’t exist anymore. Can you tell me which lines do i have to use?
Further; must i create a ‘js’ map in the enfold child-theme and put the shortcodes.js file in there or just in the main enfold child-theme folder?And can you also tell me how i can get the slider pause on hover and auto resume?
February 22, 2016 at 9:28 am #586981Hi Bilal007!
To stop the slider on hover and auto resume goto file wp-content\themes\enfold\js\shortcodes.js
look for ” hoverpause: false,” and change it to ” hoverpause: true”
using a child theme to do custom modifications will help you preserve the changes after a theme update.
http://kriesi.at/documentation/enfold/using-a-child-theme/
If you need any help on this issue further please feel free to contact us.
Best regards,
Vinay KashyapFebruary 22, 2016 at 4:17 pm #587243Hi Vinnie,
Thanks for answering a part of my question.
The part below is still unanswered:
The slide advance stops after i use the controls. The solution in https://kriesi.at/support/topic/fullwidth-easy-slider-slide-advance-stops-when-you-use-controls/ is commenting out the lines this._stopSlideshow(); 4401, 4409 and 4431 in /enfold/js/shortcodes.js.
But these lines don’t exist anymore. Can you tell me which lines do i have to use?
Further; must i create a ‘js’ map in the enfold child-theme and put the shortcodes.js file in there or just in the main enfold child-theme folder?
Can you assist me in answering these two questions?
February 23, 2016 at 5:46 pm #587846Hi!
We are working on your ticket please wait while we update the results here soon.If you are going to create the child theme you need to make sure the folder structure in child theme matches the folder structure in main theme.
The js code has been updated give us a little time we will look into it and keep you posted which line to comment out.
Best regards,
Vinay Kashyap- This reply was modified 8 years, 8 months ago by Vinay.
April 12, 2016 at 9:15 am #611753Hi,
I am also interested in a solution of this issue.
Is there any progress on this?
Thanks
MichaelApril 14, 2016 at 11:39 am #613706@mleonhard
Did you try it with Enfold v3.5.2 and newest WordPress version?Regards,
AndyApril 14, 2016 at 11:49 am #613713Hi,
I have the latest Enfold, but want to wait a couple of days with updating to WordPress 4.5.
With Enfold v3.5.2 the issue persists, after clicking on the slider the slider does not resume.
Here is my site: http://hi-flyfoto.de/Thanks
MichaelApril 17, 2016 at 7:23 am #615715Hey!
I’m sorry but I’m not sure what’s the point of doing this. Users will use the slider navigation if they want to see the next or previous image immediately and there’s a huge chance that they will just ignore the auto rotation after seeing the entire slides. They will probably go to another page or scroll down to see the entire page content. If you really need to do this, please modify the js > shortcodes.js file then look for this code around line 4769:
// public method: shows next image next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); },
.. replace it with:
// public method: shows next image next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); this.play(); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); this.play(); },
Regards,
IsmaelApril 17, 2016 at 12:18 pm #615779Hi
Great thank you, that does the trick.
While I agree most visitors probably won’t notice, I think this is a more elegant solution,
if the slider resumes after the visitor does not interact with it anymore.
One small gripe though (sorry). I have set the interval to 3 seconds.
After the slider resumes the interval is much quicker, next image appears pretty much immediately.
Perhaps you also have an idea about this?Thanks
MichaelApril 19, 2016 at 9:49 am #617252Hey!
Please replace the code with:
// public method: shows next image next : function(e) { e.preventDefault(); //this._stopSlideshow(); this._navigate( 'next' ); }, // public method: shows previous image previous : function(e) { e.preventDefault(); //this._stopSlideshow(); this._navigate( 'prev' ); },
Cheers!
IsmaelApril 19, 2016 at 11:41 am #617299Excellent!
Thank you very much.Michael
PS I have just noticed that clicking on a bullet to go directly to a slide still stops the slideshow.
So I in the section “// public method: goes to a specific image” have changed
this._stopSlideshow();
to
//this._stopSlideshow();
and that solves it. Perhaps someone else also finds this useful.April 20, 2016 at 9:23 am #618095 -
AuthorPosts
- The topic ‘Easy slider slide advance stops when you use control and auto resume after hover’ is closed to new replies.