Tagged: x
-
AuthorPosts
-
June 8, 2016 at 9:19 am #1031914
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,
NickJune 8, 2016 at 12:52 pm #1032363Hi 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!
June 8, 2016 at 1:53 pm #1032450Their 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.
June 8, 2016 at 7:45 pm #1032970Hi 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!
June 9, 2016 at 1:30 pm #1034443Hey 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?
June 9, 2016 at 8:13 pm #1034988Hello 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.
June 9, 2016 at 10:11 pm #1035196Hi, 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.
June 10, 2016 at 1:30 am #1035394Hello 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.
June 10, 2016 at 8:18 am #1035826This reply has been marked as private.June 10, 2016 at 1:15 pm #1036218Hi Nick,
Yes please, so that we could test it in your setup. Please don’t forget to set your response as private.
Thank you.
June 12, 2016 at 12:14 pm #1038360This reply has been marked as private.June 12, 2016 at 8:50 pm #1038890Hi 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!
June 12, 2016 at 9:05 pm #1038901Awesome! Thank you so much guys!
June 13, 2016 at 1:39 am #1039103You’re welcome! 🙂
-
AuthorPosts