Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active July 5, 2023 22:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogists/0ffaff39206992b0cd409132b0dbf727 to your computer and use it in GitHub Desktop.
Save woogists/0ffaff39206992b0cd409132b0dbf727 to your computer and use it in GitHub Desktop.
[Frontend Snippets] Make price widget draggable on touch devices
/**
* Make price widget draggable on touch devices
*/
add_action( 'wp_enqueue_scripts', 'load_touch_punch_js' , 35 );
function load_touch_punch_js() {
global $version;
wp_enqueue_script( 'jquery-ui-widget' );
wp_enqueue_script( 'jquery-ui-mouse' );
wp_enqueue_script( 'jquery-ui-slider' );
wp_register_script( 'woo-jquery-touch-punch', get_stylesheet_directory_uri() . "/js/jquery.ui.touch-punch.min.js", array('jquery'), $version, true );
wp_enqueue_script( 'woo-jquery-touch-punch' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment