Changeset 3430472
- Timestamp:
- 01/01/2026 11:20:28 AM (3 months ago)
- File:
-
- 1 edited
-
taxonomy-discounts-woocommerce/trunk/readme.txt (modified) (34 diffs)
Legend:
- Unmodified
- Added
- Removed
-
taxonomy-discounts-woocommerce/trunk/readme.txt
r3423071 r3430472 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.2 8 Stable tag: 6.28 Stable tag: 7.0 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 12 Let s you configure discounts/pricing rules for products based on any product taxonomy terms and WordPress user roles12 Let’s you configure discounts/pricing rules for products based on any product taxonomy terms and WordPress user roles 13 13 14 14 == Description == 15 15 16 Let s 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 certainWordPress user roles.16 Let’s you configure discounts/pricing rules for products based on any WooCommerce product taxonomy terms (built-in or custom), straightforwardly. 17 18 The discount can be applied for all users, logged-in users, or only for specific WordPress user roles. 19 19 20 20 Allows you to set a start and end date for each discount. … … 24 24 * Create WooCommerce discounts based on any custom taxonomy, like brand, for example. 25 25 26 * WPML compatible (ability to set discounts on different language s term, not compatible with multi-currency).26 * WPML compatible (ability to set discounts on different language terms, not compatible with multi-currency). 27 27 * WooCommerce Subscriptions experimental support. 28 28 … … 41 41 * Show discount information (percentage and dates) on the product loop; 42 42 * 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; 43 44 * “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; 44 45 * Exclude products already on sale from the discount rule: always, or if taxonomy discount is lower, or if taxonomy discount is higher; … … 46 47 * Disable shipping methods based on cart items applied rules; 47 48 * Set discount rules for non-logged-in users; 49 * [Google Product Feed for WooCommerce](https://automattic.pxf.io/EEJQd4) integration 48 50 * 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); 49 51 * Technical support; … … 55 57 * The discounts are applied on a “per cart line” basis (not to the sum of the products of the same taxonomy); 56 58 * 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; 58 60 * 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) 60 62 61 63 = Other (premium) plugins = … … 76 78 1. Use the included automatic install feature on your WordPress admin panel and search for “Taxonomy / Term based Discounts for WooCommerce”. 77 79 2. Activate the plugin through the `Plugins` menu in WordPress 78 3. Go tto `Products`, `Taxonomy Discounts` to set it up80 3. Go to `Products`, `Taxonomy Discounts` to set it up 79 81 80 82 == Frequently Asked Questions == … … 82 84 = Why is my product not showing the “Sale” badge? = 83 85 84 We can only show the “sale” badge when we are absolutelysure the product will get a discount, no matter how many you buy.85 So, the badge is only shown for percentage baserules with no minimum quantity required.86 87 = How can I show the discount information on the product loop andpage? =86 We can only show the “sale” badge when we are sure the product will get a discount, no matter how many you buy. 87 So, 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? = 88 90 89 91 You need to use the following filters: … … 91 93 * `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` 92 94 * `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 justuse 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 97 Or 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) 96 98 97 99 = How can I replace the sale badge with the discount percentage? = … … 101 103 `add_filter( 'tdw_perc_sale_badge', '__return_true' );` 102 104 103 Or you can justuse 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)105 Or 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) 104 106 105 107 = How can I get the current product or variation price, with the discount applied, outside the loop? = 106 108 107 You can use the `wctd_get_product_current_price` helper function with the product or variation object or idas 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.109 You can use the `wctd_get_product_current_price` helper function with the product or variation object or ID as the first argument. 110 111 You 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. 110 112 111 113 This is still beta. … … 113 115 = Will this work on multi-currency shops? = 114 116 115 No. The way we store the cart item prices is not currently compatible with stores where the customer canchange currency during the shopping session.117 No. The way we store cart item prices is not currently compatible with stores that allow customers to change currency during the shopping session. 116 118 117 119 = Is this plugin compatible with the new WooCommerce High-Performance Order Storage? = … … 133 135 Only 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. 134 136 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 forumsbut 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.137 There’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 139 If you reach us by email or any other direct contact means, we’ll assume you need premium, and of course, paid-for support. 138 140 139 141 = Where do I report security vulnerabilities found in this plugin? = … … 151 153 == Changelog == 152 154 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 155 158 * [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 158 162 159 163 = 6.2 - 2025-11-28 = … … 166 170 * [FIX] PHP notice introduced in 6.0 167 171 * [DEV] Improve WordPress Coding Standards 168 * [DEV] Tested withWordPress 6.9-RC2-61293 and WooCommerce 10.4.0-beta.1172 * [DEV] Tested up to WordPress 6.9-RC2-61293 and WooCommerce 10.4.0-beta.1 169 173 170 174 = 5.6 - 2025-05-01 = … … 173 177 * [FIX] Deprecated: Creation of dynamic property in PHP 8.3 174 178 * [DEV] Requires PHP 7.2, WordPress 5.8, and WooCommerce 7.1 175 * [DEV] Tested withWordPress 6.8 and WooCommerce 9.8.3179 * [DEV] Tested up to WordPress 6.8 and WooCommerce 9.8.3 176 180 177 181 = 5.5 - 2025-03-12 = … … 187 191 = 5.3 - 2025-03-11 = 188 192 * [FIX] Fix incorrect URLs 189 * [DEV] Tested withWordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1193 * [DEV] Tested up to WordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1 190 194 191 195 = 5.2 - 2024-12-09 = … … 193 197 * [FIX] Wrong price on integration with [Feed KuantoKusta for WooCommerce](https://wordpress.org/plugins/feed-kuantokusta-for-woocommerce/) 194 198 * [FIX] Small vulnerability only exploitable by logged-in admins and shop managers 195 * [DEV] Tested withWordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1199 * [DEV] Tested up to WordPress 6.8-alpha-59497 and WooCommerce 9.5.0-rc.1 196 200 197 201 = 5.1 - 2024-10-30 = 198 202 * [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 199 203 * [FIX] Load text domain at the right time to avoid PHP notices on WordPress 6.7 and above 200 * [DEV] Tested withWordPress 6.7-RC2-59324 and WooCommerce 9.4.0-rc.2204 * [DEV] Tested up to WordPress 6.7-RC2-59324 and WooCommerce 9.4.0-rc.2 201 205 202 206 = 5.0 - 2024-08-28 = … … 204 208 * [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 205 209 * [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 error207 * [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 compatible210 * [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 208 212 * [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 withWordPress 6.7-alpha-58943 and WooCommerce 9.3.0-beta.1213 * [DEV] Tested up to WordPress 6.7-alpha-58943 and WooCommerce 9.3.0-beta.1 210 214 211 215 = 4.6 - 2024-04-23 = 212 216 * [FIX] Discount was showing doubled on the archive and single product pages 213 * [DEV] Tested withWordPress 6.6-alpha-58011 and WooCommerce 8.9.0-dev217 * [DEV] Tested up to WordPress 6.6-alpha-58011 and WooCommerce 8.9.0-dev 214 218 215 219 = 4.5 - 2024-04-04 = … … 220 224 * [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 221 225 * [DEV] Add “Requires Plugins” header 222 * [DEV] Tested withWordPress 6.6-alpha-57920 and WooCommerce 8.8.0-rc.1226 * [DEV] Tested up to WordPress 6.6-alpha-57920 and WooCommerce 8.8.0-rc.1 223 227 224 228 = 4.4 - 2023-12-12 = 225 229 * Declare WooCommerce block-based Cart and Checkout compatibility 226 230 * Requires WordPress 5.4 227 * Tested withWordPress 6.5-alpha-57159 and WooCommerce 8.4.0-rc.1231 * Tested up to WordPress 6.5-alpha-57159 and WooCommerce 8.4.0-rc.1 228 232 229 233 = 4.3 - 2023-09-07 = … … 242 246 * Performance improvement by only loading non-expired and date valid rules on the frontend 243 247 * 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 withWordPress 6.4-alpha-56479 and WooCommerce 8.1.0-beta.1248 * Tested up to WordPress 6.4-alpha-56479 and WooCommerce 8.1.0-beta.1 245 249 246 250 = 3.8.1 - 2023-07-11 = … … 248 252 * Fix translations 249 253 * Requires WooCommerce 5.0 or above 250 * Tested withWordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3254 * Tested up to WordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3 251 255 252 256 = 3.8 - 2023-07-11 = 253 257 * [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 254 258 * Requires WooCommerce 5.0 or above 255 * Tested withWordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3259 * Tested up to WordPress 6.3-beta3-56192 and WooCommerce 7.9.0-rc.3 256 260 257 261 = 3.7 - 2023-05-29 = 258 262 * Fixed a bug where the incorrect product price would show up on the checkout page 259 * Tested withWordPress 6.3-alpha-55859 and WooCommerce 7.8.0-beta.1263 * Tested up to WordPress 6.3-alpha-55859 and WooCommerce 7.8.0-beta.1 260 264 261 265 = 3.6 - 2022-11-23 = 262 266 * [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 263 267 * Code cleanup 264 * Tested withWordPress 6.2-alpha-54860 and WooCommerce 7.2.0-beta.1268 * Tested up to WordPress 6.2-alpha-54860 and WooCommerce 7.2.0-beta.1 265 269 266 270 = 3.5 - 2022-11-22 = 267 271 * [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 268 272 * Visual feedback for required fields when adding new rules 269 * Tested withWordPress 6.2-alpha-54860 and WooCommerce 7.1273 * Tested up to WordPress 6.2-alpha-54860 and WooCommerce 7.1 270 274 271 275 = 3.4 - 2022-11-10 = … … 274 278 * Fix jQuery deprecations 275 279 * Fixed a bug when showing discount information on the product page 276 * Tested withWordPress 6.2-alpha-54748 and WooCommerce 7.1280 * Tested up to WordPress 6.2-alpha-54748 and WooCommerce 7.1 277 281 278 282 = 3.3.0 - 2022-10-17 = … … 282 286 = 3.2.0 - 2022-10-07 = 283 287 * 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 withWordPress 6.1-beta3-54400 and WooCommerce 7.0.0-rc.2288 * Tested up to WordPress 6.1-beta3-54400 and WooCommerce 7.0.0-rc.2 285 289 286 290 = 3.1.2 - 2022-09-19 = … … 300 304 * 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` 301 305 * Requires WooCommerce 4.0 or above 302 * Tested withWordPress 6.1-alpha-53556 and WooCommerce 6.9.2306 * Tested up to WordPress 6.1-alpha-53556 and WooCommerce 6.9.2 303 307 304 308 = 2.1.0 - 2022-06-29 = … … 306 310 * Code refactoring and simplification when getting the applied rule to a product 307 311 * Requires WordPress 5.0, WooCommerce 3.0 and PHP 7.0 308 * Tested withWordPress 6.1-alpha-53556 and WooCommerce 6.7.0-beta.2312 * Tested up to WordPress 6.1-alpha-53556 and WooCommerce 6.7.0-beta.2 309 313 310 314 = 2.0.0 - 2021-05-10 = … … 313 317 * 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 314 318 * 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) 316 320 * Code refactoring 317 * Tested withWordPress 5.8-alpha-50832 and WooCommerce 5.3.0-rc.2321 * Tested up to WordPress 5.8-alpha-50832 and WooCommerce 5.3.0-rc.2 318 322 * Relase sponsored by [Planeta Tangerina](https://www.planetatangerina.com/en/) and [SuportesTV.pt](https://suportestv.pt/) 319 323 320 324 = 1.5.2 - 2021-03-10 = 321 * Tested withWordPress 5.8-alpha-50516 and WooCommerce 5.1.0325 * Tested up to WordPress 5.8-alpha-50516 and WooCommerce 5.1.0 322 326 323 327 = 1.5.1 = 324 328 * Fix version number on the admin screen 325 329 * Technical support clarification 326 * Tested withWordPress 5.5-beta4-48649 and WooCommerce 4.3.1330 * Tested up to WordPress 5.5-beta4-48649 and WooCommerce 4.3.1 327 331 328 332 = 1.5.0 = … … 330 334 * Process variable subscriptions just like regular variable products (Thanks for the heads up @snap-shot) 331 335 * Fix product variations aggregation 332 * Tested withWordPress 5.3.3-alpha-46995 and WooCommerce 3.9.0-rc.2336 * Tested up to WordPress 5.3.3-alpha-46995 and WooCommerce 3.9.0-rc.2 333 337 334 338 = 1.4.8 = … … 337 341 = 1.4.7 = 338 342 * Fixed a bug which was causing the discounted prices not to be shown on the homepage 339 * Tested withWordPress 5.3.1-alpha-46771 and WooCommerce 3.8.1343 * Tested up to WordPress 5.3.1-alpha-46771 and WooCommerce 3.8.1 340 344 341 345 = 1.4.6 = … … 346 350 347 351 = 1.4.4 = 348 * Tested withWordPress 5.2.5-alpha and WooCommerce 3.8.0352 * Tested up to WordPress 5.2.5-alpha and WooCommerce 3.8.0 349 353 350 354 = 1.4.3 = 351 355 * 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) 352 356 * Fix version number on the plugin admin interface 353 * Tested withWooCommerce 3.6.3 and WordPress 5.2.1357 * Tested up to WooCommerce 3.6.3 and WordPress 5.2.1 354 358 355 359 = 1.4.2 = 356 360 * Stop using the WooCommerce term meta helper functions 357 * Tested withWooCommerce 3.6.0 RC2 and WordPress 5.1.1361 * Tested up to WooCommerce 3.6.0 RC2 and WordPress 5.1.1 358 362 359 363 = 1.4.1 = … … 362 366 = 1.4 = 363 367 * New `tdw_rule_add`, `tdw_rule_edit` and `tdw_rule_delete` actions when adding, editing or deleting rules (by @onlylowercaselettersandnumbers suggestion) 364 * Tested withWooCommerce 3.5.4 and WordPress 5.1368 * Tested up to WooCommerce 3.5.4 and WordPress 5.1 365 369 366 370 = 1.3 = … … 375 379 * Fix: when percentage discount was set for a minimum quantity of 1 and the discount was not shown on archives and single product page 376 380 * Fix: when the product had no price a php warning was thrown 377 * Tested withWooCommerce 3.5.4 and WordPress 5.1 (beta)381 * Tested up to WooCommerce 3.5.4 and WordPress 5.1 (beta) 378 382 379 383 = 1.1 = … … 385 389 * Now correctly shows the discount inside WooCommerce Product Shortcodes (sponsored by Amaranto Design) 386 390 * Small admin UX tweaks 387 * Tested withWooCommerce 3.5.1 and bumped `WC tested up to` tag391 * Tested up to WooCommerce 3.5.1 and bumped `WC tested up to` tag 388 392 * Reached 1.0 for no special reason :-) 389 393 … … 409 413 410 414 = 0.8.1 = 411 * Tested withWooCommerce 3.3415 * Tested up to WooCommerce 3.3 412 416 * Bumped `Tested up to` tag 413 417 … … 418 422 = 0.7.4 = 419 423 * 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 withWooCommerce 3.2424 * Tested up to WooCommerce 3.2 421 425 * Added `WC tested up to` tag on the plugin main file 422 426 * Bumped `Tested up to` tag … … 455 459 * Increase compatibility with other plugins that manipulate the product value; 456 460 * Stop using the $woocommerce global; 457 * Tested withWordPress 4.6.1;461 * Tested up to WordPress 4.6.1; 458 462 459 463 = 0.4 = 460 464 * 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 withWordPress 4.5;465 * Tested up to WordPress 4.5; 462 466 463 467 = 0.3 =
Note: See TracChangeset
for help on using the changeset viewer.