Last active
August 29, 2015 14:03
-
-
Save tomhemsley/a3142d2a06ec26959727 to your computer and use it in GitHub Desktop.
Disable Touch for Flex Slider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* INSTALLATION: this code should be pasted into your theme's functions.php file. | |
* | |
* Compatibility: Flex Slider. | |
*/ | |
function metaslider_flex_disable_touch($options, $slider_id, $settings) { | |
$options['touch'] = "false"; | |
return $options; | |
} | |
add_filter('metaslider_flex_slider_parameters', 'metaslider_flex_disable_touch', 11, 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment