Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1031914

    nicolainicely
    Participant

    Hi, on this page

    http://eaglerockstudiosatl.com/our-partners/

    currently my slider changes to the slide when I click on a thumbnail. How do I make it change to the slide when I hover over the thumbnail?

    Thanks,
    Nick

    #1032363

    Rupok
    Member

    Hi Nick,

    Thanks for writing n! I am not sure if it’s a feature of Revolution Slider or not. Any questions concerning the usage of a Revolution Slider feature should be directed to the Revolution Slider Documentation .

    Cheers!

    #1032450

    nicolainicely
    Participant

    Their support is so bad compared to you guys. We can’t even get full support with the license associated with our x theme purchase. I wish you would discontinue use of this product in your release and just build your own plugin or buy them out. This plugin causes so many problems for me and makes me want to move away from x theme.

    #1032970

    Rad
    Moderator

    Hi there,

    That’s possible, please add this javascript to your slider’s custom javascript section.

    jQuery( '.tp-thumb-image' ).on('hover', function() { jQuery(this).trigger('click'); } );

    I’ll forward your suggestion, it’s a good idea 🙂

    That should do it, cheers!

    #1034443

    nicolainicely
    Participant

    Hey Rad thank you for getting back to me with a solution and for taking my suggestion.

    I put this code into “Custom Javascript” but it didn’t work. Any idea why?

    #1034988

    Rue Nel
    Moderator

    Hello There,

    The JS did not work out because there is a JS error on the page. It appears that you have inserted an invalid JS code. Please do update your custom JS and use this instead:

    (function($){ 
      $('.rss').attr('title','Diary');
    })(jQuery);
    
    (function($) {
      $('img[usemap]').rwdImageMaps();
    })(jQuery);
    
    jQuery( '.tp-thumb-image' ).on('hover', function() { jQuery(this).trigger('click'); } );

    Please let us know if this works out for you.

    #1035196

    nicolainicely
    Participant

    Hi, thanks for your help but it still didn’t work. The error is gone in the console after changing to the code you provided but the slider still doesn’t change on hover.

    #1035394

    Rue Nel
    Moderator

    Hello There,

    Please update again the code and use this instead:

    (function($){ 
      $('.rss').attr('title','Diary');
    })(jQuery);
    
    (function($) {
      $('img[usemap]').rwdImageMaps();
    })(jQuery);
    
    (function($) {
      $( '.tp-thumb-image' ).on('hover', function() { jQuery(this).trigger('click'); } );
    })(jQuery);

    I would loved to know if this has work for you. Thank you.

    #1035826

    nicolainicely
    Participant
    This reply has been marked as private.
    #1036218

    Jade
    Moderator

    Hi Nick,

    Yes please, so that we could test it in your setup. Please don’t forget to set your response as private.

    Thank you.

    #1038360

    nicolainicely
    Participant
    This reply has been marked as private.
    #1038890

    Rad
    Moderator

    Hi there,

    It should be working now, I added this on your cornerstone’s custom javascript.

    jQuery( function($) {
    
      $(window).load ( function() {
           $( '.tp-thumb-image' ).on('hover', function() { $(this).click(); } );
    } );
      
    } );
    

    Cheers!

    #1038901

    nicolainicely
    Participant

    Awesome! Thank you so much guys!

    #1039103

    Paul R
    Moderator

    You’re welcome! 🙂