Advertisement
simkoG

Woocommerce Plus Minus Buttons 2

Oct 19th, 2023 (edited)
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.89 KB | None | 0 0
  1. <!-- eredeti mennyiség input mező -->
  2. <input type="number" id="quantity_" class="qty" name="quantity" value="1" aria-label="Product quantity" size="4" min="0" max="" step="1" placeholder="" inputmode="numeric" autocomplete="off">
  3.  
  4. <!-- snippet által generált új kód -->
  5. <div class="input-group bootstrap-touchspin bootstrap-touchspin-injected">
  6.     <span class="input-group-btn input-group-prepend">
  7.         <button tabindex="-1" class="btn btn-primary bootstrap-touchspin-down" type="button"></button>
  8.     </span>
  9.     <input type="number" id="quantity_" class="input-text qty text form-control" name="quantity" value="1" aria-label="Product quantity" size="4" min="0" max="" step="1" placeholder="" inputmode="numeric" autocomplete="off">
  10.     <span class="input-group-btn input-group-append">
  11.         <button tabindex="-1" class="btn btn-primary bootstrap-touchspin-up" type="button">+</button>
  12.     </span>
  13. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement