Advertisement
arsh999cg

Woo Plus Minus Btns

Oct 31st, 2022
747
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php
  2. add_action('plugins_loaded', function(){
  3.     // put your function here
  4.     add_action( 'woocommerce_before_quantity_input_field', 'wpdd_add_qty_btn_minus' );
  5.     /**
  6.      * Add "-" quantity button.
  7.      */
  8.     function wpdd_add_qty_btn_minus() { ?>
  9.         <input type="button" value="-" class="qty_button minus" />
  10.     <?php }
  11.  
  12.     add_action( 'woocommerce_after_quantity_input_field', 'wpdd_add_qty_btn_plus' );
  13.     /**
  14.      * Add "-" quantity button.
  15.      */
  16.     function wpdd_add_qty_btn_plus() { ?>
  17.         <input type="button" value="+" class="qty_button plus" />
  18.     <?php }
  19. }, 99);
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement