This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

SOFT79 Pricing Rules for WooCommerce

Description

“Pricing Rules for WooCommerce” allows you to set bulk pricing rules to products. For example 5% off if customer buys 6 or more. 10% off if customer buys 12 or more.

The prices will be presented to the customer on the product page in the form of a table.

Features:

Create pricing rules the easy way!

  • Per-product bulk pricing
  • Automatically presents a table with the available prices
  • Bulk pricing rules for multiple products
  • Bulk pricing rules for certain categories
  • Bulk pricing rules for combinations of products
  • Pricing rules based on customer roles
  • Automatically presents a custom message to inform the customer about offers

More information on www.soft79.nl.

Screenshots

  • Integrated to the edit product page
  • Optionally displays the from-to price range on the category page.
  • Optionally presents a table with available prices/discounts to the customer.

Installation

  1. Upload the plugin in the /wp-content/plugins/ directory, or automatically install it through the ‘New Plugin’ menu in WordPress
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

FAQ

Can I change the way the discounted price is displayed?

You can use the filter 'soft79_wcpr_min_max_price_html' ( $new_price_html, $original_price_html, $product, $min_price, $max_price, $is_singular )

The following will display ‘From $ x.xx’ on the catalog page (Notice that the setting Show min-max price range on category page must be checked):

`

add_filter (‘soft79_wcpr_min_max_price_html’, ‘soft79_wcpr_min_max_price_html’, 10, 6);
function soft79_wcpr_min_max_price_html( $new_price_html, $original_price_html, $product, $min_price, $max_price, $is_singular ) {
if ( ! $is_singular ) {
return sprintf( __(‘From %s’, ‘your-text-domain’), wc_price( $product->get_display_price( $min_price ) ) );
}
}
`

Reviews

September 18, 2021
Solves the problem of applying bulk rules to individual products with ease. Easy to use interface where you can simply enter the prices for each range. Different pricing between 1-6 and 7+ products? Easy.
January 3, 2018
I searched almost 3 hours to find a perfect plugin for bulk pricing functionality. And eventually decided in favor of this one. It shows different actual prices for a single product according to quantity, in your own currency. Customer would also have the option to change the quantity (and price will be automatically updated) in the cart. When price and quantity updated, it will cross the original single pcs price of product. I am quite happy with its performance. I want to pay my Big Thanks to the developer and I will also request that if you install this plugin, then please donate some money to the developer to encourage him/her for the service to provide us FREE plugin.
November 30, 2017
This is what I need for my store, thanks to the developer
August 11, 2017
This is a nice, simple, plugin for what I needed to achieve....tiered, fixed price, discounts. The only thing I wish it did is when the customer adds say, 50 items on the product details page, it would change the price of 1 item to the price of 50 items on that page. The cart page is great with the price of 1 item crossed out and the price of multiple items next to it.
September 3, 2016
Exactly what i looking for and works perfectly. Thank you.
Read all 6 reviews

Contributors & Developers

“SOFT79 Pricing Rules for WooCommerce” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

1.4.3

Release Date – 2020-01-20
* All PRO functionality is now included in the FREE version

1.4.2

Release Date – 2020-01-19
* FEATURE: WP-Multilang support
* FIX: Display sale price if a discount applies to 1x quantity
* FIX: PHP Notice about count() and bulk_rules

1.4.1

  • FIX: Not able to exclude categories on global product rules

1.4.0

  • FIX: Invalid discount calculated for tax exempt customers
  • FIX: Product variation rules were not saved properly
  • FIX: Javascript product variations

1.3.1

  • FEATURE: Customizable package price format
  • FIX: Admin Javascript in combination with newest WooCommerce version
  • INTERNAL: Created SOFT79_Bulk_Pricing_Admin::update_post_bulk_rules

1.3.0

  • INTERNAL: Filter ‘soft79_wcpr_accounted_quantity’ that allows overriding the amount of items that are taken in account for a discount.
  • Removed ‘sale price’ logic for rules with a quantity of 1

1.2.0

  • FEATURE: Bulk pricing rules for product variations

1.1.4

  • FIX: Inject prices to cart items as soon as possible (fixes issue with coupon minimum spend).
  • FIX: WPML Compatibility

1.1.3

  • FIX: Discount on variations in WC3.0+
  • FIX: PHP Deprecation message in class-meta-box-bulk-rules.php

1.1.2

  • FIX: Removed debug messages “Not for this product/user”

1.1.1

  • FIX: Product selector WooCommerce 3.0 Compatibility (Select2 v4)

1.1.0

  • FIX: WooCommerce 3.0 Compatibility
  • FEATURE: Overrideable template for the single page discount information
  • PERFORMANCE: Use cached query when retrieving product categories.

1.0.4

  • FEATURE: filter ‘soft79_wcpr_min_max_price_html’ to allow customization of the displayed min-max price range
  • FIX: Compatibility with PHP versions prior to 5.5
  • FIX: Variable product support

1.0.3.0

  • FEATURE: Auto update price information when switching between product variants
  • FIX: Removed some notices/warnings

1.0.2.4

  • FIX: If multiple variants of the same product exist in the cart, the same price would be applied to all variants

1.0.2.3

  • FIX: Fatal error if WooCommerce was disabled
  • FIX: Respect ‘woocommerce_tax_display_shop’ and ‘woocommerce_tax_display_cart’
  • FIX: Respect price suffix and excl / incl tax message in cart subtotal

1.0.2.1

  • FIX: Removed auto update code

1.0.2

  • FIX: Some PHP warnings were displayed on fresh installations.
  • FIX: Tax calculation

1.0.0

  • First public release