mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/14757373/how-to-disable-the-quantity-field-in-the-product-detail-page-in-woocommerce
9 lines
354 B
Text
9 lines
354 B
Text
add_filter( 'woocommerce_quantity_input_min', 'hide_woocommerce_quantity_input', 10, 2 );
|
|
add_filter( 'woocommerce_quantity_input_max', 'hide_woocommerce_quantity_input', 10, 2 );
|
|
function hide_woocommerce_quantity_input( $quantity, $product ) {
|
|
// only on the product page
|
|
if ( ! is_product() ) {
|
|
return $quantity;
|
|
}
|
|
return 1;
|
|
}
|