Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1463434

    hello,
    there’s any way to add a:

    on the awesome:
    https://kriesi.at/documentation/enfold/easy-slider/ or

    if the caption field accept theme shortcodes maybe it would be possible..

    #1463439

    Hi,
    I would like to pause easy slider on mouse hover. Can you please advise?

    Kind regards

    Mark

    #1463440

    is it a fullwidth or a fullscreen slider that is needed?
    your link goes to easy-slider – the part below shows fullscreen slider.

    Do you have for each slide a different rotator text? Or should the rotator text lay over all slides and is synchronized on slide-change/rotator text change ?

    you can insert the enfold shortcode to caption input field of first slide, then on styling tab of the slider there is the option : “Use first slides caption as permanent caption” ( There will be warnings on doing that – but ignore them )

    see: https://webers-testseite.de/tiago-slider/

    there is no default option on slide stop on hovering the slides.

    #1463441

    Hi
    I am using the Easy Slider element. I have 5 images on autorotation.

    I would like the rotation to pause on mouse hover, is this possible please?

    Kind regards

    Mark

    #1463442

    on slideshow.js these events ( mouseenter and mouseleave are bind to hoverpause status.
    it is set on line 69 to : hoverpause: false,
    but i do not see a filter to change that option – maybe a mod or dev knows a trick.

    #1463444

    thanks a lot for your help!

    is it a fullwidth or a fullscreen slider that is needed?

    im using Fullwidth right now (easyslider), but tested the fullscreen one just in case and it gives the same alert for using special caracters.

    Do you have for each slide a different rotator text?

    i intent to use one Headline Rotator per slider

    There will be warnings on doing that – but ignore them

    Oh, nice! i was thinking it was limited in some way, if i CAN do it without breaking anything on the theme structure this will solve half my problems :D thanks a lot!

    there is no default option on slide stop on hovering the slides.

    Sad to know, is Kriesi dev team in a need for ticket or something that sugestion get on their sprint?

    • This reply was modified 3 months, 3 weeks ago by tiago.
    #1463446

    try on child-theme functions.php:

    function change_slide_options($default){
    		$default['hoverpause'] = true ;
      return $default;
    }
    add_filter('avf_avia_slideshow_defaults','change_slide_options', 10, 1);
    #1463578

    Hi,


    @Guenni007
    : Thanks for the info! This seems to be working as expected:

    function avf_avia_slideshow_defaults_mod($default)
    {
        $default['hoverpause'] = true;
        return $default;
    }
    add_filter('avf_avia_slideshow_defaults', 'avf_avia_slideshow_defaults_mod', 10, 1);

    Best regards,
    Ismael

    #1467313

    thanks! it works fine (this topic can be closed)

    #1467323

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Sliders’ is closed to new replies.