WooCommerce Dynamic Pricing

WooCommerce Dynamic Pricing 3.4.12

No permission to download
* Fix: Fix issues when using REST API controllers that call get_price on products.
* Fix: Fix issue where Groups rules were causing an error if no group rules were configured.
* Update: WC and WP Compatibility updates.
* Update: Tested up to WordPress 6.9
* Update: Tested up to WooCommerce 10.4
* Code format, PHPCS formatting, additional PHPCS security fixes
* WP and WC Version Compatibility
* Fix: Fix issue with custom taxonomy not allowing advanced rules to be added. Another PHPCS over correction.
* Fix: Fix issue with simple roles and simple cagegory rules not indicating that they were saved. Issue caused by overly aggressive PHPCS corrections in 3.4.8
* Update: WP and WC Compatibility updates.
* New: New feature and filter. apply_to_max. This allows us to create tiered pricing structures when the rule processing mode is Bulk. Tip, set higher quantities first.
Example: Buy 1-4 get 5% off, Buy 5-9 get 10% off, Buy 10+ get 15% off.
To use this feature add the following filter to your functions.php or custom plugin:
add_filter('wc_dynamic_pricing_advanced_product_rule_apply_to_max', '__return_true');
This will cause the pricing rules to apply to the maximum quantity in the cart for that product, rather than the total quantity of that product in the cart.
* Fix: Fix issue with custom taxonomy handler, where a taxonomy which doesn't exist, but was registered by the user was causing an error
* Fix: Fix issue with product rules and formatting issues because of the overly verbose PHPCS corrections in 3.4.5
* Update: WP and WC Compatibility updates.
* Update: Improve performance of the advanced category rules by not loading the product categories for each cart item.
* Fix: PHPCS warnings and error corrections. Overly verbose, but needed to satisfy strict coding standards.
* New: Added filter, wc_dynamic_pricing_legacy_adjust_on_session_loaded, to allow users to enable the legacy adjustment on session loaded.
* Update: Load brands rules if the product_brand taxonomy exists and is registered.
* Update: WC and WP Compatibility updates.
* Update: Copyright notice.
* Update: WC and WP Compatibility updates.
* QIT: Fix issue with the coupon check causing a fatal error in the QIT.
* QIT: Fix a lot of incorrectly flagged esc problems.
Top