Hello: Thank you for looking at this and helping if you can!
The Jcarousel on the home page did a continuous scroll until I updated to the latest Wordpress version. Then it stopped. The left, right buttons stopped working as well. Here's the website: http://marcgarrisonphotography.com/
The pics scroll once then it's done. Nothing happens again until the page is refreshed.
I've read every question I can find on this that seems similar to this problem, have tried some of the different script example and nothing is working. I'm rather new to this script, and am not sure what things to change or where they are even located.
I see people calling this a plugin, but I don't see any actual JCarousel or JQuery plugin on this website. I'm found a js folder inside of the wp-admin and wp-includes folders.
Here's is what is in the header.php of the site:
function mycarousel_initCallback(carousel)
{
// Disable autoscrolling if the user clicks the prev or next button.
carousel.buttonNext.bind('click', function() {
carousel.startAuto(0);
});
carousel.buttonPrev.bind('click', function() {
carousel.startAuto(0);
});
// Pause autoscrolling if the user moves with the cursor over the clip.
carousel.clip.hover(function() {
carousel.stopAuto();
}, function() {
carousel.startAuto();
});
};
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
auto: .01,
wrap: 'last',
speed: 10,
initCallback: mycarousel_initCallback
});
});
I've tried changing the wrap to 'continous', changing the auto number and speed, it changes nothing.
Does anyone have any ideas? Thank you so much, Dee