Plugin Directory

Changeset 3430472


Ignore:
Timestamp:
01/01/2026 11:20:28 AM (3 months ago)
Author:
nakedcatplugins
Message:

Updating readme/assets from GitHub

File:
1 edited

Legend:

Unmodified
Added
Removed
  • taxonomy-discounts-woocommerce/trunk/readme.txt

    r3423071 r3430472  
    66Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 6.2
     8Stable tag: 7.0
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1111
    12 Lets you configure discounts/pricing rules for products based on any product taxonomy terms and WordPress user roles
     12Lets you configure discounts/pricing rules for products based on any product taxonomy terms and WordPress user roles
    1313
    1414== Description ==
    1515
    16 Lets you configure discounts/pricing rules for products based on any WooCommerce product taxonomy terms (built-in or custom), in a very simple way.
    17 
    18 The discount can be applied for all users, logged-in users, or only for certain WordPress user roles.
     16Let’s you configure discounts/pricing rules for products based on any WooCommerce product taxonomy terms (built-in or custom), straightforwardly.
     17
     18The discount can be applied for all users, logged-in users, or only for specific WordPress user roles.
    1919
    2020Allows you to set a start and end date for each discount.
     
    2424* Create WooCommerce discounts based on any custom taxonomy, like brand, for example.
    2525
    26 * WPML compatible (ability to set discounts on different languages term, not compatible with multi-currency).
     26* WPML compatible (ability to set discounts on different language terms, not compatible with multi-currency).
    2727* WooCommerce Subscriptions experimental support.
    2828
     
    4141* Show discount information (percentage and dates) on the product loop;
    4242* Show discount information (percentage and dates) on the product single page (mandatory on some legislations, like the Portuguese one, for example);
     43* Show discount information for non-taxonomy discounts (set by product sale price), including start and end date, thus allowing compliance with legislation, such as Portuguese law, which requires these details to be displayed next to the sale price;
    4344* “Stop - no discount” rule that makes sure products from specific taxonomy terms never have a discount applied, even if there are other rules that will apply for other product taxonomy terms;
    4445* Exclude products already on sale from the discount rule: always, or if taxonomy discount is lower, or if taxonomy discount is higher;
     
    4647* Disable shipping methods based on cart items applied rules;
    4748* Set discount rules for non-logged-in users;
     49* [Google Product Feed for WooCommerce](https://automattic.pxf.io/EEJQd4) integration
    4850* Developer mode - [more info](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin);
    4951* Technical support;
     
    5557* The discounts are applied on a “per cart line” basis (not to the sum of the products of the same taxonomy);
    5658* Only one rule is applied per cart line, so setting the priorities correctly is very important;
    57 * When aggregating product variations, the quantity will be the sum of the quantities of all the variations and the discount will be applied to all of them;
     59* When aggregating product variations, the quantity will be the sum of the quantities of all the variations, and the discount will be applied to all of them;
    5860* For WPML users, if you want the same discounts to apply to all the languages, you must replicate the rules for each of the translations of the terms
    59 * You can use the `tdw_rule_add`, `tdw_rule_edit`, and `tdw_rule_delete` actions when adding, editing, and deleting rules, to do whatever you want like, for example, clearing cache ([check out to use them here](https://gist.github.com/webdados/98282475fbee2be347eba45ad81cbba5) and send us cool examples of what you’ve done)
     61* You can use the `tdw_rule_add`, `tdw_rule_edit`, and `tdw_rule_delete` actions when adding, editing, and deleting rules, to do whatever you want, like, for example, clearing cache ([check out to use them here](https://gist.github.com/webdados/98282475fbee2be347eba45ad81cbba5) and send us cool examples of what you’ve done)
    6062
    6163= Other (premium) plugins =
     
    76781. Use the included automatic install feature on your WordPress admin panel and search for “Taxonomy / Term based Discounts for WooCommerce”.
    77792. Activate the plugin through the `Plugins` menu in WordPress
    78 3. Got to `Products`, `Taxonomy Discounts` to set it up
     803. Go to `Products`, `Taxonomy Discounts` to set it up
    7981
    8082== Frequently Asked Questions ==
     
    8284= Why is my product not showing the “Sale” badge? =
    8385
    84 We can only show the “sale” badge when we are absolutely sure the product will get a discount, no matter how many you buy.
    85 So, the badge is only shown for percentage base rules with no minimum quantity required.
    86 
    87 = How can I show the discount information on the product loop and page? =
     86We can only show the “sale” badge when we are sure the product will get a discount, no matter how many you buy.
     87So, the badge is shown only for percentage-based rules with no minimum quantity required.
     88
     89= How can I display discount information in the product loop and on the page? =
    8890
    8991You need to use the following filters:
     
    9193* `tdw_loop_disc_info_action` and `tdw_loop_disc_info_prio`: to set the hook and priority for the loop page and return, for example, `woocommerce_after_shop_loop_item_title` and `1`
    9294* `tdw_single_disc_info_action` and `tdw_single_disc_info_prio`: to set the hook and priority for the product page and return, for example, `woocommerce_single_product_summary` and `6`
    93 (This is for Storefront. You may have to tweak the action and priority to better match your theme.)
    94 
    95 Or you can just use the [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin)
     95(This is for Storefront. You may have to tweak the action and priority to match your theme better.)
     96
     97Or you can use the [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin)
    9698
    9799= How can I replace the sale badge with the discount percentage? =
     
    101103`add_filter( 'tdw_perc_sale_badge', '__return_true' );`
    102104
    103 Or you can just use the [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin)
     105Or you can use the [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin)
    104106
    105107= How can I get the current product or variation price, with the discount applied, outside the loop? =
    106108
    107 You can use the `wctd_get_product_current_price` helper function with the product or variation object or id as the first argument.
    108 
    109 You can also pass the quantity as the second argument so that the calculations are made for percentage discounts with a minimum quantity higher than one or for “buy x get y free” discounts. The returned price will be the price per unit.
     109You can use the `wctd_get_product_current_price` helper function with the product or variation object or ID as the first argument.
     110
     111You can also pass the quantity as the second argument to calculate percentage discounts with a minimum quantity greater than 1, or “buy x get y free” discounts. The returned price will be the unit price.
    110112
    111113This is still beta.
     
    113115= Will this work on multi-currency shops? =
    114116
    115 No. The way we store the cart item prices is not currently compatible with stores where the customer can change currency during the shopping session.
     117No. The way we store cart item prices is not currently compatible with stores that allow customers to change currency during the shopping session.
    116118
    117119= Is this plugin compatible with the new WooCommerce High-Performance Order Storage? =
     
    133135Only customers of the [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) get included limited technical support.
    134136
    135 There’s a support tab on the top of this page, where you can ask the community for help. We’ll try to keep an eye on the forums but we cannot promise to answer support tickets.
    136 
    137 If you reach us by email or any other direct contact means, we’ll assume you need, premium, and of course, paid-for support.
     137There’s a support tab at the top of this page, where you can ask the community for help. We’ll try to keep an eye on the forums, but we cannot promise to answer support tickets.
     138
     139If you reach us by email or any other direct contact means, we’ll assume you need premium, and of course, paid-for support.
    138140
    139141= Where do I report security vulnerabilities found in this plugin? = 
     
    151153== Changelog ==
    152154
    153 = 7.0 - TBA =
    154 * PRO show discount info for non-tax discounts
     155= 7.0 - 2026-01-01 =
     156* [NEW] [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 5.0: Show discount information for non-taxonomy discounts (set by product sale price), including start and end date, allowing compliance with legislation, such as the Portuguese law, which requires these details to be displayed next to the sale price - [Start date will be available on WooCommerce 10.5.0](https://github.com/woocommerce/woocommerce/issues/62130#issuecomment-3657559585)
     157* [NEW] Improve compatibility with [Shop as Client for WooCommerce](https://nakedcatplugins.com/product/shop-as-client-for-woocommerce-pro-add-on/) for WooCommerce: allow changing the cart item price even if a taxonomy discount is applied to it
    155158* [DEV] Allow PRO add-on to filter discount information even when empty, thus allowing showing discount information for non-taxonomy discounts
    156 * [DEV] Remove load_plugin_textdomain call is it’s no longer needed
    157 * tested with...
     159* [DEV] Remove `load_plugin_textdomain` call as it’s no longer needed
     160* [DEV] Allow PRO add-on to integrate with [Google Product Feed for WooCommerce](https://automattic.pxf.io/EEJQd4)
     161* [DEV] Tested up to WordPress 7.0-alpha-61379 and WooCommerce 10.4.2
    158162
    159163= 6.2 - 2025-11-28 =
     
    166170* [FIX] PHP notice introduced in 6.0
    167171* [DEV] Improve WordPress Coding Standards
    168 * [DEV] Tested with WordPress 6.9-RC2-61293 and WooCommerce 10.4.0-beta.1
     172* [DEV] Tested up to WordPress 6.9-RC2-61293 and WooCommerce 10.4.0-beta.1
    169173
    170174= 5.6 - 2025-05-01 =
     
    173177* [FIX] Deprecated: Creation of dynamic property in PHP 8.3
    174178* [DEV] Requires PHP 7.2, WordPress 5.8, and WooCommerce 7.1
    175 * [DEV] Tested with WordPress 6.8 and WooCommerce 9.8.3
     179* [DEV] Tested up to WordPress 6.8 and WooCommerce 9.8.3
    176180
    177181= 5.5 - 2025-03-12 =
     
    187191= 5.3 - 2025-03-11 =
    188192* [FIX] Fix incorrect URLs
    189 * [DEV] Tested with WordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1
     193* [DEV] Tested up to WordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1
    190194
    191195= 5.2 - 2024-12-09 =
     
    193197* [FIX] Wrong price on integration with [Feed KuantoKusta for WooCommerce](https://wordpress.org/plugins/feed-kuantokusta-for-woocommerce/)
    194198* [FIX] Small vulnerability only exploitable by logged-in admins and shop managers
    195 * [DEV] Tested with WordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1
     199* [DEV] Tested up to WordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1
    196200
    197201= 5.1 - 2024-10-30 =
    198202* [DEV] [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 3.1: License validation on websites with WPML set to have different domains per language
    199203* [FIX] Load text domain at the right time to avoid PHP notices on WordPress 6.7 and above
    200 * [DEV] Tested with WordPress 6.7-RC2-59324 and WooCommerce 9.4.0-rc.2
     204* [DEV] Tested up to WordPress 6.7-RC2-59324 and WooCommerce 9.4.0-rc.2
    201205
    202206= 5.0 - 2024-08-28 =
     
    204208* [NEW] [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 3.0: If the product is already on sale, and the rule hasn’t been excluded, option to choose if the taxonomy discount should be applied on top of the already discounted price or the original product regular price
    205209* [NEW] Add WooCommerce admin scripts to our settings page so we can implement tooltips on more complex options
    206 * [FIX] Loop in some situations when showing the "on-sale" information, which caused a fatal error
    207 * [TWEAK] Abstract variable product detection with `$product->has_child()` instead of `$product->is_type( 'variable' )` so that all kinds of variable products declared from other plugins are compatible
     210* [FIX] Loop in some situations when showing the “on-sale” information, which caused a fatal error
     211* [TWEAK] Abstract variable product detection with `$product->has_child()` instead of `$product->is_type(‘variable’)` so that all kinds of variable products declared from other plugins are compatible
    208212* [TWEAK] Remove filter in the cart subtotal columns as the values were not accurate. Can be reactivated by passing true to `tdw_cart_item_subtotal_information`
    209 * [DEV] Tested with WordPress 6.7-alpha-58943 and WooCommerce 9.3.0-beta.1
     213* [DEV] Tested up to WordPress 6.7-alpha-58943 and WooCommerce 9.3.0-beta.1
    210214
    211215= 4.6 - 2024-04-23 =
    212216* [FIX] Discount was showing doubled on the archive and single product pages
    213 * [DEV] Tested with WordPress 6.6-alpha-58011 and WooCommerce 8.9.0-dev
     217* [DEV] Tested up to WordPress 6.6-alpha-58011 and WooCommerce 8.9.0-dev
    214218
    215219= 4.5 - 2024-04-04 =
     
    220224* [TWEAK] [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 2.3: Only show license key setting to administrators
    221225* [DEV] Add “Requires Plugins” header
    222 * [DEV] Tested with WordPress 6.6-alpha-57920 and WooCommerce 8.8.0-rc.1
     226* [DEV] Tested up to WordPress 6.6-alpha-57920 and WooCommerce 8.8.0-rc.1
    223227
    224228= 4.4 - 2023-12-12 =
    225229* Declare WooCommerce block-based Cart and Checkout compatibility
    226230* Requires WordPress 5.4
    227 * Tested with WordPress 6.5-alpha-57159 and WooCommerce 8.4.0-rc.1
     231* Tested up to WordPress 6.5-alpha-57159 and WooCommerce 8.4.0-rc.1
    228232
    229233= 4.3 - 2023-09-07 =
     
    242246* Performance improvement by only loading non-expired and date valid rules on the frontend
    243247* Performance improvement by caching our filter calls to `woocommerce_product_is_on_sale` and `woocommerce_product_get_price` - This can be disabled by passing `false to the new `tdw_enable_cache` filter or on the [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin)
    244 * Tested with WordPress 6.4-alpha-56479 and WooCommerce 8.1.0-beta.1
     248* Tested up to WordPress 6.4-alpha-56479 and WooCommerce 8.1.0-beta.1
    245249
    246250= 3.8.1 - 2023-07-11 =
     
    248252* Fix translations
    249253* Requires WooCommerce 5.0 or above
    250 * Tested with WordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3
     254* Tested up to WordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3
    251255
    252256= 3.8 - 2023-07-11 =
    253257* [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 1.8: Exclude products on sale from the discount rule
    254258* Requires WooCommerce 5.0 or above
    255 * Tested with WordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3
     259* Tested up to WordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3
    256260
    257261= 3.7 - 2023-05-29 =
    258262* Fixed a bug where the incorrect product price would show up on the checkout page
    259 * Tested with WordPress 6.3-alpha-55859 and WooCommerce 7.8.0-beta.1
     263* Tested up to WordPress 6.3-alpha-55859 and WooCommerce 7.8.0-beta.1
    260264
    261265= 3.6 - 2022-11-23 =
    262266* [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 1.7: “Stop - no discount” rule that makes sure products from specific taxonomy terms never have a discount applied, even if there are other rules that will apply for other product taxonomy terms
    263267* Code cleanup
    264 * Tested with WordPress 6.2-alpha-54860 and WooCommerce 7.2.0-beta.1
     268* Tested up to WordPress 6.2-alpha-54860 and WooCommerce 7.2.0-beta.1
    265269
    266270= 3.5 - 2022-11-22 =
    267271* [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 1.6: Disable shipping methods based on cart items applied rules
    268272* Visual feedback for required fields when adding new rules
    269 * Tested with WordPress 6.2-alpha-54860 and WooCommerce 7.1
     273* Tested up to WordPress 6.2-alpha-54860 and WooCommerce 7.1
    270274
    271275= 3.4 - 2022-11-10 =
     
    274278* Fix jQuery deprecations
    275279* Fixed a bug when showing discount information on the product page
    276 * Tested with WordPress 6.2-alpha-54748 and WooCommerce 7.1
     280* Tested up to WordPress 6.2-alpha-54748 and WooCommerce 7.1
    277281
    278282= 3.3.0 - 2022-10-17 =
     
    282286= 3.2.0 - 2022-10-07 =
    283287* Allow [PRO add-on](https://nakedcatplugins.com/product/taxonomy-term-and-role-based-discounts-for-woocommerce-pro-add-on/?utm_source=wordpress.org&utm_medium=link&utm_campaign=taxonomydiscounts_woocommerce_plugin) 1.3 to add rules for non logged in users
    284 * Tested with WordPress 6.1-beta3-54400 and WooCommerce 7.0.0-rc.2
     288* Tested up to WordPress 6.1-beta3-54400 and WooCommerce 7.0.0-rc.2
    285289
    286290= 3.1.2 - 2022-09-19 =
     
    300304* Deprecated the `WCTD_PERC_SALE_BADGE`, `WCTD_LOOP_DISC_INFO_ACTION`, `WCTD_LOOP_DISC_INFO_PRIO`, `WCTD_PROD_DISC_INFO_ACTION`, `WCTD_PROD_DISC_INFO_PRIO` and `WCTD_ADVANCED_MODE` in favor of the new filters `tdw_perc_sale_badge`, `tdw_loop_disc_info_action`, `tdw_loop_disc_info_prio`, `tdw_single_disc_info_action`, `tdw_single_disc_info_prio` and `tdw_dev_mode`
    301305* Requires WooCommerce 4.0 or above
    302 * Tested with WordPress 6.1-alpha-53556 and WooCommerce 6.9.2
     306* Tested up to WordPress 6.1-alpha-53556 and WooCommerce 6.9.2
    303307
    304308= 2.1.0 - 2022-06-29 =
     
    306310* Code refactoring and simplification when getting the applied rule to a product
    307311* Requires WordPress 5.0, WooCommerce 3.0 and PHP 7.0
    308 * Tested with WordPress 6.1-alpha-53556 and WooCommerce 6.7.0-beta.2
     312* Tested up to WordPress 6.1-alpha-53556 and WooCommerce 6.7.0-beta.2
    309313
    310314= 2.0.0 - 2021-05-10 =
     
    313317* If the `WCTD_ADVANCED_MODE` constant is set to true, a new “ID” field will be available for discount rules, which can be used by developers to identify a specific discount rule
    314318* New `wctd_get_product_applied_rule` helper function to get the product applied rule, if any
    315 * Added [Woocommerce Google Product Feed compatibility](https://woocommerce.com/products/google-product-feed/)
     319* Added [Woocommerce Google Product Feed compatibility](https://automattic.pxf.io/EEJQd4)
    316320* Code refactoring
    317 * Tested with WordPress 5.8-alpha-50832 and WooCommerce 5.3.0-rc.2
     321* Tested up to WordPress 5.8-alpha-50832 and WooCommerce 5.3.0-rc.2
    318322* Relase sponsored by [Planeta Tangerina](https://www.planetatangerina.com/en/) and [SuportesTV.pt](https://suportestv.pt/)
    319323
    320324= 1.5.2 - 2021-03-10 =
    321 * Tested with WordPress 5.8-alpha-50516 and WooCommerce 5.1.0
     325* Tested up to WordPress 5.8-alpha-50516 and WooCommerce 5.1.0
    322326
    323327= 1.5.1 =
    324328* Fix version number on the admin screen
    325329* Technical support clarification
    326 * Tested with WordPress 5.5-beta4-48649 and WooCommerce 4.3.1
     330* Tested up to WordPress 5.5-beta4-48649 and WooCommerce 4.3.1
    327331
    328332= 1.5.0 =
     
    330334* Process variable subscriptions just like regular variable products (Thanks for the heads up @snap-shot)
    331335* Fix product variations aggregation
    332 * Tested with WordPress 5.3.3-alpha-46995 and WooCommerce 3.9.0-rc.2
     336* Tested up to WordPress 5.3.3-alpha-46995 and WooCommerce 3.9.0-rc.2
    333337
    334338= 1.4.8 =
     
    337341= 1.4.7 =
    338342* Fixed a bug which was causing the discounted prices not to be shown on the homepage
    339 * Tested with WordPress 5.3.1-alpha-46771 and WooCommerce 3.8.1
     343* Tested up to WordPress 5.3.1-alpha-46771 and WooCommerce 3.8.1
    340344
    341345= 1.4.6 =
     
    346350
    347351= 1.4.4 =
    348 * Tested with WordPress 5.2.5-alpha and WooCommerce 3.8.0
     352* Tested up to WordPress 5.2.5-alpha and WooCommerce 3.8.0
    349353
    350354= 1.4.3 =
    351355* New `tdw_custom_product_loop` that you should return true to inside your product custom loops so that the discounted price shows correctly (Thanks vinha.pt)
    352356* Fix version number on the plugin admin interface
    353 * Tested with WooCommerce 3.6.3 and WordPress 5.2.1
     357* Tested up to WooCommerce 3.6.3 and WordPress 5.2.1
    354358
    355359= 1.4.2 =
    356360* Stop using the WooCommerce term meta helper functions
    357 * Tested with WooCommerce 3.6.0 RC2 and WordPress 5.1.1
     361* Tested up to WooCommerce 3.6.0 RC2 and WordPress 5.1.1
    358362
    359363= 1.4.1 =
     
    362366= 1.4 =
    363367* New `tdw_rule_add`, `tdw_rule_edit` and `tdw_rule_delete` actions when adding, editing or deleting rules (by @onlylowercaselettersandnumbers suggestion)
    364 * Tested with WooCommerce 3.5.4 and WordPress 5.1
     368* Tested up to WooCommerce 3.5.4 and WordPress 5.1
    365369
    366370= 1.3 =
     
    375379* Fix: when percentage discount was set for a minimum quantity of 1 and the discount was not shown on archives and single product page
    376380* Fix: when the product had no price a php warning was thrown
    377 * Tested with WooCommerce 3.5.4 and WordPress 5.1 (beta)
     381* Tested up to WooCommerce 3.5.4 and WordPress 5.1 (beta)
    378382
    379383= 1.1 =
     
    385389* Now correctly shows the discount inside WooCommerce Product Shortcodes (sponsored by Amaranto Design)
    386390* Small admin UX tweaks
    387 * Tested with WooCommerce 3.5.1 and bumped `WC tested up to` tag
     391* Tested up to WooCommerce 3.5.1 and bumped `WC tested up to` tag
    388392* Reached 1.0 for no special reason :-)
    389393
     
    409413
    410414= 0.8.1 =
    411 * Tested with WooCommerce 3.3
     415* Tested up to WooCommerce 3.3
    412416* Bumped `Tested up to` tag
    413417
     
    418422= 0.7.4 =
    419423* Removed the translation files from the plugin `languages` folder (the translations are now managed on WordPress.org’s GlotPress tool and will be automatically downloaded from there)
    420 * Tested with WooCommerce 3.2
     424* Tested up to WooCommerce 3.2
    421425* Added `WC tested up to` tag on the plugin main file
    422426* Bumped `Tested up to` tag
     
    455459* Increase compatibility with other plugins that manipulate the product value;
    456460* Stop using the $woocommerce global;
    457 * Tested with WordPress 4.6.1;
     461* Tested up to WordPress 4.6.1;
    458462
    459463= 0.4 =
    460464* New `wctd_get_product_ids_on_sale` function to get the product_id of all the products that have an active discount, similar to WooCommerce’s native `wc_get_product_ids_on_sale` (to be used by developers);
    461 * Tested with WordPress 4.5;
     465* Tested up to WordPress 4.5;
    462466
    463467= 0.3 =
Note: See TracChangeset for help on using the changeset viewer.