Title: [Plugin: AnythingSlider for WordPress] Feature Requests
Last modified: August 20, 2016

---

# [Plugin: AnythingSlider for WordPress] Feature Requests

 *  Plugin Author [Jacob Dubail](https://wordpress.org/support/users/jacobdubail/)
 * (@jacobdubail)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/)
 * Add any feature requests you’d like to see in a future release.
 * [http://wordpress.org/extend/plugins/anythingslider-for-wordpress/](http://wordpress.org/extend/plugins/anythingslider-for-wordpress/)

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

 *  Plugin Author [Jacob Dubail](https://wordpress.org/support/users/jacobdubail/)
 * (@jacobdubail)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607936)
 * Add options for appendControlsTo.
 *  [nykm](https://wordpress.org/support/users/nykm/)
 * (@nykm)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607954)
 * minor;documentation
 * Settings > Appearance Settings > Tooltip Class
    {fix description}
 *  [pundurbrother](https://wordpress.org/support/users/pundurbrother/)
 * (@pundurbrother)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607959)
 * WordPress **smiley codes to work as images** not symbols
 *  [spencermerpi](https://wordpress.org/support/users/spencermerpi/)
 * (@spencermerpi)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607962)
 * option to make the url of slides not change. If it starts as panel1-1 it should
   stay that way
 *  [CarolineElisa](https://wordpress.org/support/users/carolineelisa/)
 * (@carolineelisa)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607974)
 * To make this the most amazing slider ever:
 * + Responsive layout (i.e. content scales to the slideshow container width)
    +
   Swipe navigation for iPhones/iPads etc
 * How cool would that be!
 *  Plugin Contributor [Mottie](https://wordpress.org/support/users/mottie/)
 * (@mottie)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607977)
 * [@spencermerpi](https://wordpress.org/support/users/spencermerpi/): I think I
   answered your question in another thread… basically set the `hashTags` option
   to `false`
 * [@carolineelisa](https://wordpress.org/support/users/carolineelisa/): The slider
   will scale to fit inside of it’s container if you set the `expand` function to`
   true`. See [this demo](http://proloser.github.com/AnythingSlider/expand.html).
 * Swipe navigation for iPhones/iPads can be added by including some extra scripting;
   this code needs to be added BEFORE the AnythingSlider initialization code – [demo](http://jsfiddle.net/VM8XG/6507/)
 *     ```
       jQuery(function($) {
   
           /******************************************
            Swipe Demo - without using jQuery Mobile
            ******************************************/
   
           // Called when the plugin finished initializing
           $('#slider').bind('initialized', function(e, slider) {
               var time = 1000,
                   // allow movement if < 1000 ms (1 sec)
                   range = 50,
                   // swipe movement of 50 pixels triggers the slider
                   x = 0,
                   t = 0,
                   touch = "ontouchend" in document,
                   st = (touch) ? 'touchstart' : 'mousedown',
                   mv = (touch) ? 'touchmove' : 'mousemove',
                   en = (touch) ? 'touchend' : 'mouseup';
   
               slider.$window.add(slider.$controls).bind(st, function(e) {
                   // prevent image drag (Firefox)
                   e.preventDefault();
                   t = (new Date()).getTime();
                   x = e.originalEvent.touches ? e.originalEvent.touches[0].pageX : e.pageX;
               }).bind(en, function(e) {
                   t = 0;
                   x = 0;
               }).bind(mv, function(e) {
                   e.preventDefault();
                   var newx = e.originalEvent.touches ? e.originalEvent.touches[0].pageX : e.pageX,
                       r = (x === 0) ? 0 : Math.abs(newx - x),
                       // allow if movement < 1 sec
                       ct = (new Date()).getTime();
                   if (t !== 0 && ct - t < time && r > range) {
                       if (newx < x) {
                           if ($(this).hasClass('anythingControls')) {
                               slider.$controls.find('.next').trigger('click');
                           } else {
                               slider.goForward();
                           }
                           return false;
                       }
                       if (newx > x) {
                           if ($(this).hasClass('anythingControls')) {
                               slider.$controls.find('.prev').trigger('click');
                           } else {
                               slider.goBack();
                           }
                       }
                       t = 0;
                       x = 0;
                       return false;
                   }
               });
           });
   
       });​
       ```
   
 *  [micasuh](https://wordpress.org/support/users/micasuh/)
 * (@micasuh)
 * [14 years ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607990)
 * This plugin needs to allow developer to set scripts to the footer instead of 
   the header for faster loading! Maybe add a checkbox that enables footer loading
   if you prefer header loading by default.

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

The topic ‘[Plugin: AnythingSlider for WordPress] Feature Requests’ is closed to
new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/anythingslider-for-wordpress.svg)
 * [AnythingSlider for WordPress](https://wordpress.org/plugins/anythingslider-for-wordpress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/anythingslider-for-wordpress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/anythingslider-for-wordpress/)
 * [Active Topics](https://wordpress.org/support/plugin/anythingslider-for-wordpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/anythingslider-for-wordpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/anythingslider-for-wordpress/reviews/)

 * 7 replies
 * 7 participants
 * Last reply from: [micasuh](https://wordpress.org/support/users/micasuh/)
 * Last activity: [14 years ago](https://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-feature-requests/#post-2607990)
 * Status: not resolved