Advertisement
simkoG

WooCommerce Plus Minus Buttons

Oct 19th, 2023 (edited)
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. <?php
  2. add_action( "wp_enqueue_scripts", "acme_wc_plus_minus_quantity_buttons" );
  3.  
  4. function acme_wc_plus_minus_quantity_buttons() {
  5.     wp_enqueue_script( "touchspin", "https://cdnjs.cloudflare.com/ajax/libs/bootstrap-touchspin/4.7.3/jquery.bootstrap-touchspin.min.js", array("jquery"), "4.7.3" );
  6.     wp_add_inline_script(
  7.       "touchspin",
  8.       "jQuery(document).ready(function(){
  9.           $('input.qty').TouchSpin({
  10.             min: $('input.qty').attr('min') ? $('input.qty').attr('min') : 0,
  11.             max: $('input.qty').attr('max') ? $('input.qty').attr('max') : 100,
  12.             step: $('input.qty').attr('step') ? $('input.qty').attr('step') : 1,
  13.             decimals: 0
  14.           });
  15.       });"
  16.     );
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement