Title: [Plugin: Meteor Slides] touch screen support
Last modified: August 20, 2016

---

# [Plugin: Meteor Slides] touch screen support

 *  Resolved [Mstam53](https://wordpress.org/support/users/mstam53/)
 * (@mstam53)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/)
 * Hello,
    First, wanted to say how awesome your plugin is. Works/looks amazing!
 * Was curious if there is a way to make slide show touch screen enabled?
 * Would appreciate any guidance with this.
    Thanks!
 * [http://wordpress.org/extend/plugins/meteor-slides/](http://wordpress.org/extend/plugins/meteor-slides/)

Viewing 13 replies - 1 through 13 (of 13 total)

 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2346901)
 * Thanks for trying my plugin, I’m glad you’re liking it!
 * I haven’t tried to add touch interactivity yet but it’s on my feature list and
   I’d like to add this. There’s a jQuery plugin called [jQuery Touchwipe](http://plugins.jquery.com/project/Touchwipe-iPhone-iPad-wipe-gesture)
   that can enable this, there is even an example and demo that use jQuery Cycle,
   which is what powers Meteor Slides.
 *  Thread Starter [Mstam53](https://wordpress.org/support/users/mstam53/)
 * (@mstam53)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2346973)
 * Thanks Josh for the additional info! Appreciate it.
    Will check it out and let
   you know how I make out. Mike
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347024)
 * No problem, I’m curious to hear how it goes, I’ll be trying this myself soon!
 *  Thread Starter [Mstam53](https://wordpress.org/support/users/mstam53/)
 * (@mstam53)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347214)
 * Hello Josh,
    Again, have to tell you how awesome your plugin is. My client loves
   it!
 * Have an additional question re: meteor slides.
 * I have several slideshows in a WP site which I made stop on the last slide.
    
   I want the last slide in each show to jump automatically to a URL on the site.
 * Is there a way to do this?
 * Thanks.
    Mike
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347215)
 * Thanks again Mike. I haven’t tried anything like this but in theory you should
   be able to do that.
 * There is [an “end” option](http://jquery.malsup.com/cycle/options.html) that 
   you can use to run a custom function when the slideshow ends. By default the 
   slideshow doesn’t end, but you can use the “autostop” option to stop the slideshow
   after the first cycle and then run a function on “end” that go to a link.
 * Not sure about that last part, you’d need a line or two of jQuery to add that
   function.
 *  Thread Starter [Mstam53](https://wordpress.org/support/users/mstam53/)
 * (@mstam53)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347221)
 * Thanks Josh,
    Will check it out/let you know how it goes. Mike
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347222)
 * Please do, I’m curious to hear how you solve it.
 *  [balanmarina](https://wordpress.org/support/users/balanmarina/)
 * (@balanmarina)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347235)
 * Hi! Josh! How could i use this plugin? I do not know JS. May be some links with
   example of integration?
 * should I upload script into js directory, then put <script type=”text/javascript”
   src=”js/jquery.touchwipe.js”></script> into header.php?
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347236)
 * This plugin is already built into Meteor Slides 1.5.
 *  [balanmarina](https://wordpress.org/support/users/balanmarina/)
 * (@balanmarina)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347237)
 * Hi, Josh. Thank you for being here )))
    I am using version 1.5 currently. How
   could i solve this problem? Thank you!
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347238)
 * What is the problem, is the touch navigation not working?
 *  [balanmarina](https://wordpress.org/support/users/balanmarina/)
 * (@balanmarina)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347239)
 * yes! I can’t do a vertical scroll on my mobile devices when I touch the slide
   deck. I have to touch above or below it to scroll.
 * maybe I could fix this, surely if you tell me how )))))
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347240)
 * Yeah, that is a bug in Meteor Slides 1.5, it will be fixed in 1.5.1. For now 
   you can fix it by editing the slideshow.js file in the plugin. Take this bit 
   of code:
 *     ```
       // Setup jQuery TouchWipe
   
           $j('.meteor-slides').touchwipe({
               wipeLeft: function() {
                   $j('.meteor-slides').cycle('next');
               },
               wipeRight: function() {
                   $j('.meteor-slides').cycle('prev');
               }
           });
       ```
   
 * And edit it like this:
 *     ```
       // Setup jQuery TouchWipe
   
           $j('.meteor-slides').touchwipe({
               wipeLeft: function() {
                   $j('.meteor-slides').cycle('next');
               },
               wipeRight: function() {
                   $j('.meteor-slides').cycle('prev');
               },
               preventDefaultEvents: false
           });
       ```
   

Viewing 13 replies - 1 through 13 (of 13 total)

The topic ‘[Plugin: Meteor Slides] touch screen support’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/meteor-slides_0f131a.svg)
 * [Meteor Slides](https://wordpress.org/plugins/meteor-slides/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/meteor-slides/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/meteor-slides/)
 * [Active Topics](https://wordpress.org/support/plugin/meteor-slides/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/meteor-slides/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/meteor-slides/reviews/)

 * 13 replies
 * 3 participants
 * Last reply from: [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * Last activity: [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-touch-screen-support/#post-2347240)
 * Status: resolved