Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shameemreza/75ed2e20223c3c5ce2e3d781eafc3c1a to your computer and use it in GitHub Desktop.
Save shameemreza/75ed2e20223c3c5ce2e3d781eafc3c1a to your computer and use it in GitHub Desktop.
Disable quantity input on product pages in WooCommerce
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment