• hi, very simple but very effective, cool plugin πŸ™‚

    I managed to pause/resume the transitions when the mouse enters the Slider area this way:
    – inserting the code bellow after line 275 of the file wp-featured-content-slider/scripts/jquery.cycle.all.2.72.js
    – line 275 has this code var $el = $(this);
    – and I put this extra code after it:

    $(this).mouseover(function() {
    	$(o.s,o.c).cycle('pause');
    });
    $(this).mouseout(function() {
    	$(o.s,o.c).cycle('resume');
    });

    http://wordpress.org/extend/plugins/wp-featured-content-slider/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter brasofilo

    (@brasofilo)

    also, for enabling Html code in the option “More Separator” instead of echo $points; use this: echo esc_html(stripslashes($points));

    I have put this code but slider not pause on hover

    Thread Starter brasofilo

    (@brasofilo)

    Well, the plugin was updated recently… And am not using it anymore…

    Open a new support request as this one is marked as “Not a support question”.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WP Featured Content Slider] Pause on Hover’ is closed to new replies.