Simple Tiered Pricing Table for WooCommerce is the easiest way to add tiered pricing, quantity discounts, and volume price breaks to your WooCommerce store. Customers instantly see how much they save when buying more — no upselling, no coding required.
Whether you run a wholesale store, a B2B shop, or just want to reward bulk buyers, this plugin adds a professional quantity discount table directly on your product pages with live-updating prices as customers change quantities.
Quantity-Based Tiered Pricing
5 Pricing Table Display Templates
Choose how your quantity discount table appears on each product page:
Quantity Controls
Shop & Category Page Price Display
Let shoppers see bulk pricing before they even open a product:
Colours & Column Labels
Developer Tools & Integrations
[anhqtm-pricing-table] — place the pricing table anywhere: pages, posts, or widgets/wp-json/wc/v3/products/{id}Most WooCommerce quantity discount plugins are complex, bloated, or charge for basic features. Simple Tiered Pricing Table gives you five beautiful pricing table templates for free, unlimited tiers, and all the display options you need — with a clean, fast, developer-friendly codebase.
The Pro version unlocks advanced pricing strategies built for wholesale stores, B2B shops, and high-volume merchants:
Role-Based Pricing
Set different tiered prices, tiers, and minimum quantities per user role — Wholesaler, Retailer, VIP, Guest, or any custom role. Optionally hide the pricing table entirely for specific roles.
Global Pricing Rules
Define one volume discount rule and apply it across multiple products and/or categories simultaneously. No need to configure each product individually. Supports Mix & Match quantity calculation — a customer’s combined cart quantity across different products counts toward tier thresholds.
Cart Upsell Messages
Show contextual “Buy 2 more to save 15%!” messages directly inside the WooCommerce cart. Fully customisable message template with smart placeholders to drive higher average order values.
Full CSV Round-Trip with Role Data
Export and re-import role-based pricing, global rule assignments, and all tier configurations via WooCommerce’s CSV tools.
Place the tiered pricing table anywhere on a page, post, or widget area:
[anhqtm-pricing-table product_id="123"]
Override the display template per placement:
[anhqtm-pricing-table product_id="123" template="blocks"]
Available templates: table, blocks, list, tooltip, dropdown
The plugin extends the WooCommerce Products REST endpoint with an anhqtm_tiered_pricing field.
Read pricing data:
GET /wp-json/wc/v3/products/123
Returns:
`json
{
“anhqtm_tiered_pricing”: {
“pricing_type”: “percentage”,
“tiers”: [
{ “qty”: 5, “value”: 10 },
{ “qty”: 10, “value”: 15 }
],
“min_qty”: 1,
“max_qty”: 0,
“qty_step”: 0
}
}
`
Write pricing data (requires authentication):
POST /wp-json/wc/v3/products/123
Send the same anhqtm_tiered_pricing object in the request body.