Skip to content

Instantly share code, notes, and snippets.

View arjun1638's full-sized avatar

Arjun Parab arjun1638

  • Paderborn, Germany
View GitHub Profile
@arjun1638
arjun1638 / Customizing the Maximum Quantity in WooCommerce with Code.php
Created January 15, 2023 16:24
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 ) {