• Hi Julien,

    All is looking and working as expected and the doc is really helpfull.
    I am using post types and fields to dynamically generate all the slides within a section, and all is working great.
    To make it short, I cant find how to show the current slide number nor the total of slides number. I am also straggling with the arrows navigation, I cant find the proper method for navigating to nextSlide nor PreviousSlide. Both things are needed for my custom slide navigation.
    I am also wondering, is it possible to generate an array with all the slides? I need to be able to randomly show just the first slide of a section, The remaining slides would be shown in alphabetical order.

    Any directions would be really appreciated.

    Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter machinette

    (@machinette)

    HI,

    I managed to show the current slide number by adding in jquery.fullpage.custom.js:

    slide.find('.counter').html(slideIndex + 1 + '/' + fullpageSlidesCount.length);

    to fullpageAfterSlideLoad, but fullpageSlidesCount.length is returning a wrong number of slides.

    Any idea?

    Thanks

    Thread Starter machinette

    (@machinette)

    Hi,
    maybe this will help anyone who’s straggling with this as I am.
    I solved the current slide & total slide by adding this 2 lines to fullpageAfterSlideLoad in jquery.fullpage.custom.js, after duplicating the plugin folder in to the theme folder. Not sure if its the cleanest way to do it.

    var totalSlides = fullpageSectionsEl.eq( index -1 ).find( '.slide' );
    slide.find('.counter').html(slideIndex + 1 + '/' + totalSlides.length);

    But I am straggling with the navigation, cant find how call the nextSlide and PreviousSlide.

    I also havent figured yet how to make the first slide random followed by the rest of slides ordered alphabetically.

    Any suggestions are more than welcome

    Thread Starter machinette

    (@machinette)

    For the previousSlide im using $.fn.fullpage.moveSlideLeft(); and for the nextSlide $.fn.fullpage.moveSlideRight();

    Trying to mange how to make the first slide random followed by the rest of slide sorted alphabetically, tried a few options but aint working as expected.

    Thread Starter machinette

    (@machinette)

    Last issue is also solved.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Custom slide navigation’ is closed to new replies.