Hello
I am having a hard time applying custom advance options within the ADVANCED OPTIONS: box provided by the views_slideshow_jcarouselthumbs. I notice it doesn't come out as the write accepted JSON format. All I really need to do is to have the slide show to start from the first node. {where it is suppose to be the default} however It starts from the second slide!

Any help would be greatly appreciated!

thanks
Arv

Comments

dzaus’s picture

Had the same problem, where it starts from the second slide. Issue is that jCarousel uses 0-based index.

Add the following to jcarousel.js, right before the carousel options are applied: (also see patch from http://drupal.org/node/1058028#comment-4222648 for context-respective change)

    // decrement start value from Admin options, as jCarousel has 0-based index
    options.start--;
    
    // --------------- "unchanged" below here, just included so you can find the spot ---------------
    // Initialize the jcarousel. + patch to respect context
    var $jcarousel = carousel.addClass('jcarousel-processed').jcarousel(options).parents('.jcarousel-container:first').parent();
fearlsgroove’s picture

Status: Active » Fixed

what are you putting in advanced options? is this still an issue? Sorry i'm an issues q slacker. Reopen if needed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.