Plogins Tiers – Tiered Pricing for WooCommerce

外掛說明

Tiers gives a WooCommerce store quantity-based pricing. You set the breakpoints, buy 5, save 5%; buy 10, save 10%, and the discount is taken off the line item the moment a shopper carts enough units. The same breakpoints are shown as a table on the product page so people can see the price they’d pay before they add to cart.

The discount is calculated in PHP on woocommerce_before_calculate_totals, so the pricing logic ships no front-end JavaScript. The product-page table is a plain HTML <table> printed server-side with <th scope> and a <caption>, so it reads correctly to screen readers and doesn’t shift the layout as the page loads.

When a quantity matches more than one tier, the deepest qualifying tier applies, 12 units takes the “10+” price, not the “5+” price. Tiers never raises a price either, so a product that’s already on sale keeps its lower price.

Tiers declares compatibility with WooCommerce HPOS and the Cart/Checkout Blocks. It stores everything in a single wp_options row and creates no custom tables, so deleting the plugin leaves the database as it was.

What you get

  • Any number of global pricing tiers, each a minimum quantity and a discount percentage (with an optional label)
  • Automatic discounting in the cart, with the highest matching tier winning
  • A pricing table on single product pages, with a choice of where it appears: product summary, before or after the add-to-cart form, the product meta area, or nowhere automatic
  • A [tiers_table] shortcode and a “Volume pricing table” block for dropping the table in by hand
  • An optional heading above the table and an optional “You save” column
  • An optional “You save” note under each discounted line in the cart
  • An admin tier builder that adds and removes rows in place, with a live preview of how each tier reads
  • A Polish translation, plus a bundled POT file for translating into other languages (text domain tiers)
  • A tiers_product_tiers filter that lets Tiers PRO swap in per-product or role-based tiers

Documentation: https://plogins.com/tiers/docs/

You may also like these plugins

More free WooCommerce plugins from WPPoland:

Browse the full catalogue at https://plogins.com/ .

External Services

Tiers does not connect to any external services. Pricing tiers are stored in a single tiers_settings row in your WordPress options table, and the discount is calculated in PHP on your own server, no data ever leaves your site. The plugin sends no email and makes no remote requests; the product-page pricing table is rendered locally from those stored tiers.

Development

Tiers is developed in the open. The PHP, JS, and CSS you install are the same files in the repository, nothing is minified or generated by a build step. Read the code, file a bug, or send a patch at https://github.com/wppoland/plogins-tiers.

螢幕擷圖

適用於區塊編輯器

這個外掛提供 1 個可供 Gutenberg/區塊編輯器使用的區塊。

  • Volume pricing table Server-rendered volume pricing table for the current or a chosen WooCommerce product.

安裝方式

  1. Install and activate WooCommerce (8.0 or later).
  2. Upload the tiers folder to /wp-content/plugins/, or grab a copy from https://github.com/wppoland/plogins-tiers.
  3. Activate the plugin through the Plugins screen.
  4. Go to WooCommerce Tiers and add at least one pricing tier (e.g. 5 units 5% off).
  5. The pricing table appears automatically on product pages, and discounts apply in the cart.

常見問題集

  • Documentation – https://plogins.com/tiers/docs/
  • Plugin page – https://plogins.com/tiers/
  • Source code – https://github.com/wppoland/plogins-tiers
  • Bug reports and feature requests – https://github.com/wppoland/plogins-tiers/issues

Does Tiers require WooCommerce?

Yes. Tiers is a WooCommerce extension and requires WooCommerce 8.0 or later.

Does the pricing table reload the page?

No. The pricing table is server-rendered, it loads with the page, before any JavaScript runs. There is no AJAX or hydration step.

How does the “highest tier wins” logic work?

If a customer has 12 units of a product in their cart, and you have tiers for “5+” (5% off) and “10+” (10% off), they receive 10% off. The tiers are evaluated from lowest to highest min_qty and the last match wins.

Can I apply different tiers to different products?

In the free version, tiers are global (applied to all products). Tiers PRO adds per-product tier overrides via the product edit screen.

Are discounts compatible with WooCommerce coupons?

Yes. Tiers modifies the cart line-item price before WooCommerce calculates totals, so standard WooCommerce coupons work normally on top of the tiered price.

What happens when I deactivate the plugin?

Discounts stop being applied and the pricing table no longer appears. Your settings are retained in the database.

What happens when I delete the plugin?

The uninstall routine removes the tiers_settings option. No custom tables are created, so your database is left clean.

Does it work with taxes?

Yes. Tiers modifies prices before WooCommerce’s tax calculation, so WooCommerce’s own tax logic applies to the discounted price.

Does this plugin work on WordPress Multisite?

Yes. This plugin is compatible with WordPress Multisite. Network activate it or activate it on individual sites; each site keeps its own settings and data.

使用者評論

2026 年 7 月 5 日
I’m impressed with how well this integrates with my existing theme. No conflicts, no errors—just smooth functionality right out of the box.
閱讀全部 1 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Plogins Tiers – Tiered Pricing for WooCommerce〉的開發相關工作。

參與者

〈Plogins Tiers – Tiered Pricing for WooCommerce〉外掛目前已有 1 個本地化語言版本。 感謝全部譯者為這個外掛做出的貢獻。

將〈Plogins Tiers – Tiered Pricing for WooCommerce〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

0.2.4

  • Docs: added a “You may also like” section linking the other free WPPoland WooCommerce plugins. No functional changes.

0.2.3

  • New: Elementor widget for the volume pricing table (works on Elementor 3.x and 4.0).

0.2.2

  • Packaging: exclude the .wordpress-org assets directory from the plugin download (WordPress.org SVN assets only). No functional changes.

0.2.1

  • Renamed to Plogins Tiers for WooCommerce for a more distinctive plugin name.

0.2.0

  • New: configurable table placement (product summary, before/after add-to-cart form, product meta, or manual only).
  • New: [tiers_table] shortcode and a “Volume pricing table” block for placing the table anywhere.
  • New: optional custom table heading.
  • New: optional “You save” column in the pricing table.
  • New: optional per-line “You save” note in the cart.
  • New: translation support, with a Domain Path of /languages, a bundled tiers.pot, and a Polish translation.
  • Fix: define the missing Tiers\PLUGIN_DIR constant so the plugin boots reliably.
  • Housekeeping: removed an unused template; expanded coding-standards coverage to templates and blocks.

0.1.0

  • Initial release: global volume pricing tiers, server-rendered pricing table on product pages, admin tier builder, tiers/product_tiers filter for PRO overrides. No jQuery, no layout shift, WCAG 2.2 AA.