How to change prices per number ordered in WooCommerce [closed]

Not a standard option, there’s a plugin for that: Dynamic Pricing

Alternatively, you can hide the quantity buttons:

div.quantity {
display: none !important;
}

or disable it entirely:

function woocommerce_quantity_input() {}

though both these alternative solutions do this for your entire shop.