Make price widget draggable on touch devices

You are here:

Resources

Grab this script and save it to the JS folder in your theme directory.

Installation

Add code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the Code snippets plugin. Avoid adding custom code directly to your parent theme’s functions.php file as this will be wiped entirely when you update the theme.

Remember to make sure the path matches your theme structure) to enqueue it.

  /**
  * 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’ );
  }
Was this article helpful?
Dislike 0
Views: 15