Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arjun1638/e16116cab4f692e32cfb04ec6e737924 to your computer and use it in GitHub Desktop.
Save arjun1638/e16116cab4f692e32cfb04ec6e737924 to your computer and use it in GitHub Desktop.
Customizing the Maximum Quantity in WooCommerce with Code
<?php
add_filter( 'woocommerce_quantity_input_max', 'custom_woocommerce_quantity_input_max', 10, 2 );
/**
* Setting max quantity to 1000.
*
* @param integer $max .
* @param object $product .
*/
function custom_woocommerce_quantity_input_max( $max, $product ) {
$max = 1000;
return $max;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment