salmancreation

woocommerce_quantity_input_args min 0 - 1inc

Jan 16th, 2021 (edited)
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. function mym_woocommerce_quantity_input_args( $args, $product ) {
  4.     $args['input_value'] = 0;   // Starting value
  5.     $args['max_value'] = 100;   // Maximum value
  6.     $args['min_value'] = 0;   // Minimum value
  7.     $args['step']    = 1;   // Quantity steps
  8.     return $args;
  9. }
  10. add_filter( 'woocommerce_quantity_input_args', 'mym_woocommerce_quantity_input_args', 10, 2 );
Add Comment
Please, Sign In to add comment