Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wooxperto/b6d0a22eed7bbe329f879058c8fb9c8e to your computer and use it in GitHub Desktop.
Save wooxperto/b6d0a22eed7bbe329f879058c8fb9c8e to your computer and use it in GitHub Desktop.
Set min max and step product quantity at variable product single variation
<?php
/**
* @snippet Min, Max, Increment & Default Value Quantity | WooCommerce
* @author WooXperto
* @date 04.08.2023
*/
/* Set min max & Step Product quanity for variation product*/
add_filter( 'woocommerce_available_variation', 'wooxperto_woocommerce_quantity_min_variation', 5555, 3 );
function wooxperto_woocommerce_quantity_min_variation( $args, $product, $variation ) {
$args['min_qty'] = 5;
return $args;
}
@wooxperto
Copy link
Author

Easily set min max step product quantity at variable product single variation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment