이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

SOFT79 Pricing Rules for WooCommerce

설명

“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.

스크린샷

  • 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.

설치

  1. Upload the plugin in the /wp-content/plugins/ directory, or automatically install it through the ‘New Plugin’ menu in WordPress
  2. 워드프레스의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.

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 ) ) );
}
}
`

후기

2021년 9월 18일
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.
2018년 1월 3일
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.
2017년 11월 30일
This is what I need for my store, thanks to the developer
2017년 8월 11일
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.
2016년 9월 3일
Exactly what i looking for and works perfectly. Thank you.
모든 6 평가 읽기

기여자 & 개발자

“SOFT79 Pricing Rules for WooCommerce”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “SOFT79 Pricing Rules for WooCommerce”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

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