Set minimum Quantity for Woo Commerce Product

Set minimum Quantity for Woo Commerce Product

We can set minimum quantity as by default for woo commerce product using following code

We have used the Plugin Min Max Quantity plugin from WP Repository and that plugin saves the Min Quantity in post meta min_quantity

add_filter( 'woocommerce_quantity_input_args', 'comcast_woocommerce_quantity_changes', 10, 2 );
   
function comcast_woocommerce_quantity_changes( $args, $product ) {

	
	$id = $product->get_id();
   
   if ( ! is_cart() ) {
  
      $args['input_value'] = get_post_meta($id,'min_quantity',true); // Start from this value (default = 1) 
  
   }
   return $args;
   
}

screen82

Leave a Reply

Your email address will not be published. Required fields are marked *