mrjWells – thank you for that suggestion. It helped resolve the same problem I was having.
BUT I HAVE ANOTHER PROBLEM that came up since this update….
The API is no longer working as before (vers 4.3.1 worked fine). I have tech support thread going with ThemePunch. I have added mouseovers to my Main Menu. As users scroll over the menu options, the slideshow changes to different slides.
But now only ever-other menu item works. I am not sure how many people use this API and if anyone else is having any problems with it. ThemePunch suggested the solution was to …
I’d recommend using the “delegate” method for your events. Here’s an example:
jQuery('body').on('mouseover', '#ID', function () {
revapi6.revshowslide(1);
});
I was using …
jQuery('#ID').mouseover(function () {
revapi6.revshowslide(1);
});
Anyway, this did not fix the problem.