Last active
August 24, 2025 07:58
-
-
Save plugin-republic/aca94c40214ba38891f245c13543f61e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function demo_quantity_input_min( $min, $product ) { | |
return 0; | |
} | |
add_filter( 'woocommerce_quantity_input_min', 'demo_quantity_input_min', 10 , 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment