Changelog
2.6.0 (2026-09-23)
Features
- Hyvä support now ships with the extension — The companion package,
mirasvit/module-cataloglabel-hyva, is gone: everything it contained is part of Product Labels itself. That is the labels on Hyvä category, search and CMS product listings, the label overlaid on the product page's main image, the Tailwind styles that position a label in its corner of the image, and the script that refreshes labels when a shopper picks a swatch on a configurable product. There is no longer an extra package to find and keep in step, and on a Luma store the Hyvä part simply stays dormant. If the package is installed on your store, remove it before you upgrade — the first item under Improvements has the commands.
Improvements
-
⚠️ Remove the companion package before upgrading — If your store has it installed, run this first:
composer remove mirasvit/module-cataloglabel-hyva
composer require mirasvit/module-cataloglabel:* --update-with-dependenciesOtherwise you would have the same templates installed twice, so Composer refuses the upgrade and reports a conflict such as
mirasvit/module-cataloglabel … conflicts with mirasvit/module-cataloglabel-hyva …. That message stops the upgrade without saying what to do about it — the answer is the two commands above. No settings or labels are lost, andsetup:upgradedrops the retired module name fromapp/etc/config.phpfor you. If you never installed the package, there is nothing to do. -
⚠️ On a Hyvä store, rebuild Tailwind after upgrading — Run
bin/magento hyva:config:generateand thennpm run build-prodin your theme'sweb/tailwinddirectory. The extension now registers its own Tailwind sources, which the retired package used to do on its behalf. Skipping it leaves a label sitting under the product image instead of on it: the theme keeps serving the stylesheet it was built with, and that file knows nothing about theposition-*classes the extension puts on a placeholder. -
⚠️
Hyva_MirasvitCatalogLabelis gone, not renamed — The Hyvä module no longer exists in any form, and neither does its dependency onhyva-themes/magento2-compat-module-fallback. Which template a block uses is now decided in layout: ahyva_default.xmlthat Magento merges only on a Hyvä theme points the one block that needs it at its Hyvä version. Nothing in the extension asks which theme is active.setup:upgraderemoves the old module name fromapp/etc/config.phpfor you. You only need to act if you referencedHyva_MirasvitCatalogLabelyourself — in a customdi.xml, a layout file, or a deployment script that enables modules by name. -
⚠️ If you overrode a Hyvä label template in your theme, repoint it — Only one template is Hyvä-specific now, and it moved from
Hyva_MirasvitCatalogLabel::ajax.phtmltoMirasvit_CatalogLabel::ajax-hyva.phtml. The other two the retired package carried —labelRenderer.phtmlandlabel/display.phtml— are gone entirely: both themes render the extension's ownMirasvit_CatalogLabel::labelRenderer.phtmlandMirasvit_CatalogLabel::label/display.phtml. The same goes for the JavaScript, which is nowMirasvit_CatalogLabel::js/label-updater.js. An override sitting at a path that no longer exists is simply not read, and there is no error to say so — the stock template renders instead. Luma template paths did not change. -
One storefront, two themes — The label markup is one template now, rendered by Luma and Hyvä alike. Where a fix to a Hyvä template used to mean a release of both packages and a version pair to match up, it is now one release.
-
Faster label reindex when labels use the discount-percent condition — A product's discount percentage is now worked out once per product and store during a reindex, rather than once for every label rule that checks it. Before, each such label ran the catalog-price-rule lookup again for the product and, on a configurable product, for every one of its child products. Stores with several discount-based labels and many configurable products will see the biggest gain. The saved results are capped, so a full reindex of a very large catalog uses no more than about 4 MB extra memory.
Fixed
- The label-refresh warning on Hyvä storefronts was always in English. When the request that refreshes labels after a shopper picks a swatch failed, the message shown was a hard-coded English string, untranslatable on every store whatever its language. It is a proper phrase now and is translated into all 45 bundled locales. Luma storefronts were unaffected — that path shows Magento's own message.
- Labels on Hyvä storefronts were missing two accessibility fixes and one SEO fix that Luma has had since 2.5.15. The retired package carried its own copy of the label template, frozen at an intermediate revision from May 2025, and the three corrections made to the extension's own copy after that never reached it. On Hyvä a clickable label was therefore an anchor that could not be reached by keyboard — no
role, notabindex, no Enter/Space handling — and its link text was counted by search engines as anchor text for the product, which is the "identical anchor text for different pages" warning 2.5.15 fixed for Luma. That anchor was also nested inside the product tile's own link, which is invalid HTML. All three are fixed on Hyvä by the merge, because both themes now render the same template. Luma storefronts were unaffected by any of them. - A label could appear twice over the main image on a Hyvä product page. If your theme's
gallery.phtmlrenders theproduct.labelsblock itself, as the Hyvä instructions describe, the extension added the same label a second time on top. It now sees that the label is already in the gallery and leaves it alone. The retired package behaved the same way, so stores that had it installed may already have seen this. A stock Hyvä gallery was never affected. - The Hyvä label-refresh script could throw a JavaScript error after a shopper picked a swatch. If the swatch-change event had no selected options attached, the script failed instead of doing nothing. If the refresh request failed on a theme without Hyvä's message handler, it also failed while trying to show the warning. The script now does nothing in both cases.
2.5.17 (2026-09-15)
Improvements
- ⚠️ Removed the old product label templates that nothing in the module rendered any more:
view/frontend/templates/product/badge.phtml,product/list.phtml,product/view.phtmlandview/adminhtml/templates/label/preview.phtml. Labels on the storefront and the label preview in the admin are unaffected — they use different templates. Only a custom theme that copied or referenced one of these four files directly needs updating. - ⚠️ Removed three PHP helper methods that existed only to render those templates:
Helper\Data::getProductHtml(),getProductListHtml()andgetProductViewHtml(). Two of them could no longer render anything at all, and the third rendered a template that is now gone. Custom code calling them should useBlock\Product\Label\RendererorBlock\Product\Label\Placeholderinstead.
2.5.16 (2026-09-03)
Improvements
- Fewer database queries on storefront pages — the module used to look up its label placeholders again for every product block on the page (up to 12 identical queries on a single category page, and it happened even on stores with no labels configured yet). The result is now reused for the whole page request.
- Indexing problems are no longer silent — if the label indexer cannot be reached when a product is saved, the module now records it in the log instead of ignoring it, so a store that stops updating labels can actually be diagnosed.
- The user manual is no longer bundled inside the module package; it is published online instead.
- ⚠️ Requires Mirasvit Core module 1.7.15 or newer (previously 1.4.33). Composer updates it automatically; if you install modules manually, update the Core module together with this one.
- ⚠️ Three unused PHP classes were removed:
Block\Adminhtml\Label\Preview,Model\System\Config\Source\LabelOutputTypeandModel\System\Config\Source\RenderMode. They were not referenced anywhere in the module, but custom code or a custom theme that referred to them must be updated.
Fixed
- Fixed labels silently stopping to update on large catalogs. The module's index change log grew without limit (hundreds of millions of rows on affected stores), and Magento's own cleanup tried to delete it in one statement — which consumed enormous amounts of database memory, ran for 20 minutes or more, and was killed before finishing. The change log therefore never drained, its internal counter eventually hit its ceiling, and product edits stopped reaching the labels. Cleanup now runs in small batches, and a full label reindex clears the change log completely and resets the counter.
- Fixed products showing outdated labels when they were edited while a full label reindex was running. Such edits used to be discarded and the product kept its old labels until it was saved again; they are now re-queued and picked up by the next indexer run.
- Fixed a single faulty label removing every label from the storefront. If one label's conditions could not be read, the entire reindex aborted and left the index empty. The problem label is now skipped and written to the log, and all remaining labels are indexed normally.
- Fixed the
discount_percentlabel variable and the "Percent Discount" label condition returning wrong values for bundle products. A fixed bundle with a percentage-based special price reported a large negative discount; once the bundle's required options cost more than the special price saved, the discount went negative as well; and dynamic bundles reported no discount at all. The discount is now measured between the bundle's full regular price and its full discounted price — required options included — so it matches the discount you configured (a 20% special price now reports 20%). - Fixed HTTP 500 errors from the label request that runs when a customer picks a swatch on a configurable product. An incomplete or unexpected request — no placeholder list, an unknown placeholder code, or a product that no longer exists — now skips that entry and returns the labels it can render, instead of failing the whole request.
- Fixed a label being dropped from a placeholder when the internal record controlling its position had the id
0.
2.5.15 (2026-06-30)
Fixed
- Fixed an SEO issue on category pages where label text (for example "Bags Sale") was being treated as the link text for the product image. When the same label applied to many products, search engines flagged it as "identical anchor text for different pages". Label text is now marked as decorative, so search engines and screen readers no longer count it as part of the product link.
2.5.14 (2026-06-26)
Improvements
- Code quality improvements — internal hardening to reduce the chance of edge-case errors.
2.5.13 (2026-06-05)
Fixed
- Fixed HTTP 500 in cataloglabel/label/ajax when selected swatch combination has no matching simple product (matrix-hole)
2.5.12 (2026-05-22)
Fixed
- Prevented a race condition where two overlapping full label reindexes (for example, a manual CLI run started while the scheduled cron reindex was still in progress) could corrupt the rebuilt index. A second reindex started while one is already running now skips with a log entry instead of competing with the in-progress rebuild.
2.5.11 (2026-05-15)
Fixed
- Fixed an "Array to string conversion" error introduced in 2.5.9 that could appear after updating the module and, on affected stores, cause products on listing pages to display the wrong labels
2.5.10 (2026-05-12)
Fixed
- Fixed an issue on large stores where triggering a full label reindex would cause all product labels to vanish from the storefront. Previously, labels were removed at the start of the reindex and only restored once the process completed — which could take several hours. Labels now remain visible throughout the entire reindex.
2.5.9 (2026-04-09)
Features
- Emoji in label text — Label titles and descriptions now accept emoji characters, so you can create labels like "🔥 Hot Deal" or "⭐ Best Seller"
- 40+ new translations — The admin interface for Product Labels is now translated into over 40 languages
Improvements
- The admin configuration section is now listed as Product Labels under Stores Configuration (previously "Catalog Label")
- Admin configuration field descriptions have been rewritten with clearer language and practical examples for all settings (date format codes, wildcard patterns for page exclusions, etc.)
- Label HTML for a given product and display type is now cached within the request — repeated rendering of the same product and label combination is skipped, reusing the previously generated output instead
- Added a database index that speeds up label lookups, particularly on stores with large product catalogs
2.5.8 (2026-03-30)
Improvements
- Label rendering is faster on pages with many products (category pages, search results). Previously each product triggered a separate database query to load its label data; now all label data for the page is fetched in a single query and reused.
- Reduced overhead when rendering label content by skipping an unnecessary store context switch that Magento was performing for each label template.
2.5.7 (2026-03-11)
Fixed
- Fixed discount_percent showing catalog rule percentage instead of actual discount for configurable products with special-priced children
2.5.6 (2026-01-30)
Fixed
- Fixed the issue with decimal attributes displaying with trailing zeros on labels
2.5.5 (2026-01-02)
Fixed
- Fixed the DateMalformedStringException for empty date attributes
2.5.4 (2025-12-22)
Features
- Compatibility with Hyvä 1.4
2.5.3 (2025-12-19)
Fixed
- Fixed the issue with labels overlapping the dropdown in admin grid
2.5.2 (2025-12-03)
Fixed
- Fixed the issue with the badge displaying
2.5.1 (2025-07-10)
Fixed
- Fixed the issue with applying product variables when they are not used in labels
2.5.0 (2025-06-23)
Improvements
- WCAG 2.2 AA compliance
2.4.10 (2025-05-20)
Fixed
- Fixed the issue where the stock_qty variable was doubling results
2.4.9 (2025-05-07)
Improvements
- Added a calendar date picker for attributes with the "date" input type
- Retrieve stock quantity from all inventory sources when using the stock_qty variable (MSI enabled)
2.4.8 (2025-04-24)
Improvements
- Added support for HTML tags in the "Title" field
2.4.7 (2025-04-14)
Fixed
- Compatibility with Magento 2.4.8
2.4.6 (2025-04-04)
Fixed
- Fixed the issue where the "Quantity is 0" condition was skipping products with zero quantity
2.4.5 (2024-12-27)
Fixed
- Fixed the issue with displaying product variables on a label without a template
2.4.4 (2024-12-13)
Fixed
- Fixed the issue with the attr|attributeCode variables if they were added multiple times
2.4.3 (2024-12-10)
Fixed
- Fixed the issue with template preview when custom styles are applied
2.4.2 (2024-11-22)
Fixed
- Fixed the issue with discount calculation when catalog prices include tax
- Fixed the issue with product variables on labels for child products of configurable products
2.4.1 (2024-11-14)
Fixed
- Fixed the issue with incorrect discount value in labels
2.4.0 (2024-11-06)
Improvements
- Improved and optimized reindexing time
2.3.11 (2024-10-24)
Fixed
- Fixed the issue when the "Apply labels for configurable products if one of the child products meets the conditions" configuration is enabled (TypeError: count(): Argument 1() ($value) must be of type Countable|array, null given in mirasvit/module-cataloglabel/src/CatalogLabel/Block/Product/Label/Placeholder.php:172)
2.3.10 (2024-10-22)
Improvements
- Improved the "Apply labels for configurable products if one of the child products meets the conditions" configuration
2.3.9 (2024-10-11)
Improvements
- Added ability to display labels for configurable products if one of the child products meets the conditions
Fixed
- Fixed the issue with mass actions when applying a filter (all records are changed/deleted)
- Fixed the issue with the "Price - Final Price" condition when taxes are enabled in the store
2.3.8 (2024-08-08)
Features
- Added ability to set the "Final Price" condition in a label rule
2.3.7 (2024-06-07)
Improvements
- Reindex improvements
Fixed
- Fixed the label positioning issue for products with multiple images on product view page
- Fixed the issue with getting a discount percentage when the product price is set in a different currency
2.3.6 (2024-05-23)
Fixed
- Fixed the issue with double POST requests on saving labels (Firefox)
- Fixed the issue with the mst_productlabel_label_rule_product table (indexing performed for all stores instead of only specified stores)
2.3.5 (2024-04-11)
Fixed
- Unnecessary empty placeholders when the 'Apply labels for child products of configurable products' option is disabled
2.3.4 (2024-03-21)
Fixed
- Fixed the issue with the "Customer Groups" configuration on product labels
- Fixed the issue with CSS styles from label templates
2.3.3 (2024-03-14)
Improvements
- Security improvements
2.3.2 (2024-03-05)
Fixed
- Fixed the issue with labels not displaying on the homepage
2.3.1 (2024-02-23)
Improvements
- Ability to apply labels for simple products of configurable product
2.3.0 (2024-02-12)
Features
- Added the ability to hide labels on specified pages
Fixed
- Fixed the issue with labels on configurable products (the condition “Percent Discount” is set, and the “Display Product Prices In Catalog” setting is set to “Including Tax”)
2.2.8 (2023-12-22)
Fixed
- Fixed the "Percent Discount" condition (multi-store)
2.2.7 (2023-12-08)
Improvements
- Run the "cataloglabel" cron every day at 00:45
- Apply the "cataloglabel" cron only if the product label index is set to "Update by Schedule". Use the "mirasvit🏷emulate:cron" command to run the cron regardless
2.2.6 (2023-12-01)
Features
- Added the "Active From" and "Active To" columns to the "Manage Labels" admin grid
Improvements
- Optimized product label indexing
Fixed
- Fixed the issue with the label conditions applying (multiple stores)
2.2.5 (2023-11-16)
Fixed
- Fixed the issue with labels on bundle products that have discounts
2.2.4 (2023-10-27)
Improvements
- Prevent the overlay of product label preview on the admin panel
2.2.3 (2023-10-23)
Fixed
- Fixed the type error when using a product attribute in a label (some cases)
2.2.2 (2023-10-04)
Fixed
- Fixed error on labels listing when incorrect styles added to label
2.2.1 (2023-09-07)
Features
- Added the ability to set the date format for the "Date" and "Date and Time" attribute types
Fixed
- Fixed the issue with the "Active From" and "Active To" label settings
2.2.0 (2023-08-08)
Fixed
- Fixed the issue with conditions by tier price
2.1.9 (2023-07-31)
Fixed
- Fixed the issue with reindexing labels on Magento EE (giftcard products)
2.1.8 (2023-07-11)
Fixed
- Fixed the issue with saving labels (PHP8)
2.1.7 (2023-07-06)
Improvements
- Changed the type of the column 'style' in the table 'mst_productlabel_label_display' to allow saving large CSS
2.1.6 (2023-06-30)
Fixed
- Issue with error on Label edit page for labels of the type 'Attribute'
2.1.5 (2023-06-22)
Fixed
- Fixed the issue with error 'Notice: Undefined offset: 1' when labels not indexed yet
2.1.4 (2023-06-15)
Fixed
- The issue with the Save button after changing the Appearance field on the Label edit page
2.1.3 (2023-06-09)
Improvements
- Ability to apply label manually when Product Labels index is set to 'Update by Schedule'
2.1.2 (2023-06-08)
Fixed
- Issue with Labels relative URLs in multistore when store code is added to store URL
2.1.1 (2023-06-05)
Fixed
- indexer 'Update by Schedule'
2.1.0 (2023-05-30)
Fixed
- variable for label URL in templates
2.0.9 (2023-05-22)
Fixed
- Fixed the issue with labels' discount variable value (some cases)
2.0.8 (2023-04-21)
Fixed
- Fixed the issue with attribute variable not always returning correct value
2.0.7 (2023-04-20)
Improvements
- SVG images in labels
Fixed
- Fixed the issue with cron tasks (Cron Job cataloglabel has an error: Argument 1 passed to Mirasvit\CatalogLabel\Model\Observer::apply() must be of the type bool, object given)
2.0.6 (2023-04-18)
Fixed
- Fixed the issue with error when placeholder is deleted but its code is used for manual labels
2.0.5 (2023-04-12)
Fixed
- Fixed the issue with stock condition (multistock)
- Fixed the issue with labels for products which not present in the default store
- Fixed the issue with lebels' Visible In setting not saved
2.0.4 (2023-04-10)
Fixed
- Fixed the issue with uploading label images
2.0.3 (2023-03-28)
Fixed
- Fixed the issue with errors related to incorrect styles
2.0.2 (2023-03-20)
Fixed
- Console command return value
- PHP 8.2 compatibility
2.0.1 (2023-03-17)
Fixed
- Composer conflict with old hyva compatibility module
2.0.0 (2023-03-15)
Features
- Templates for labels
- Positioning labels through placeholders
- Manually positioned placeholders
Improvements
- Module structure changed
- New DB tables
- Labels output logic changed
- "Show labels in custom themes" code changed
Fixed
- Several small bugs fixed
Other
- Labels created in previous versions of the extension will be migrated to the new version automatically but may require additional adjustments
- Old "Show labels in custom themes" code should not produce errors but no longer shows labels. Check the user manual for updated code.
1.3.15 (2023-02-15)
Fixed
- Fixed the issue with discount rule
1.3.14 (2023-02-08)
Fixed
- Fixed the issue with the discount rule for configurable products
1.3.13 (2023-02-06)
Fixed
- Fixed the issue with Labels massAction change status
1.3.12 (2023-02-01)
Fixed
- Fixed the issue with error after deleting labels
1.3.11 (2023-01-31)
Fixed
- Fixed the issue with stock quantity condition
1.3.10 (2023-01-30)
Improvements
- Added support of Magento 2.4.6
Fixed
- Fixed the issue with product quantity condition
1.3.9 (2023-01-20)
Fixed
- Fixed the issue with the condition 'Set as New'
1.3.8 (2023-01-17)
Improvements
- New variables \special_price_dl, \new_days, \attr|code\
1.3.7 (2023-01-16)
Fixed
- Fixed the issue with stock status rule
- Fixed the issue with new table columns not added in the database during the upgrade of the module
1.3.6 (2023-01-11)
Fixed
- Fixed the issue with labels affecting products sorting order
- Fixed the issue with error while trying to edit labels of the type rule (PHP8.1, Magento_PricePermissions)
- Fixed reindexing issue
1.3.5 (2023-01-09)
Improvements
- Reindexing improved
- Small code changes
- Removed unnecessary empty labels in frontend
1.3.4 (2022-12-26)
Fixed
- Fixed the issue with the error while creating a product
1.3.3 (2022-12-16)
Fixed
- PHP8.1 compatibility issue
1.3.2 (2022-12-16)
Improvements
- Small code changes.
1.3.1 (2022-12-13)
Features
- Variables in label title and description.
1.3.0 (2022-12-05)
Improvements
- Code quality improved.
- Admin UI updated.
- Reindex performance improved.
- Additional console command for reindex.
Fixed
- Fixed the issue with duplicated labels on product listings
1.2.9 (2022-11-15)
Fixed
- Fixed the issue with reindex on large stores
1.2.8 (2022-11-02)
Fixed
- Fixed the issue with the error 'Division by zero'
1.2.7 (2022-10-20)
Fixed
- Fixed the issue with the error on reindex (preg_split(): Passing null to parameter 3 () of type int is deprecated)
1.2.6 (2022-10-14)
Fixed
- Fixed the issue with the error 'Deprecated Functionality: preg_match_all(): Passing null to parameter 2 of type string is deprecated' (PHP8.1)
1.2.5 (2022-10-12)
Fixed
- Fixed the issue with percent discount rule for configurable products
1.2.4 (2022-09-19)
Fixed
- Strpos error on format text function
- Added composite index
- Indexing optimization (performance improvement)
1.2.3 (2022-08-22)
Fixed
- Corrected getImageType call
- Indexing issue (duplicates in index)
1.2.2 (2022-07-28)
Fixed
- Performance issues
Improvements
- Added the mst_cataloglabel index to handle Product Labels
- Cronjob for Label Rules indexing is running once a day now
- Label Rules indexing can be forced by running mst_cataloglabel reindex
1.2.1 (2022-06-20)
Improvements
- remove db_schema_whitelist.json
1.2.0 (2022-05-23)
Improvements
- Migrate to declarative schema
1.1.26 (2021-12-28)
Fixed
- Display labels on the catalog page
1.1.25 (2021-11-26)
Fixed
- getDisplays issue
1.1.24 (2021-11-25)
Improvements
- Speed up the getDisplays() method
1.1.23 (2021-08-31)
Improvements
- Added "Is Salable" product rule
1.1.22 (2021-03-02)
Fixed
- Apply persent discount rule issue
1.1.21 (2021-03-02)
Fixed
- Re-saving dates problem
1.1.20 (2020-10-19)
Fixed
- Small spelling fixes
1.1.19 (2020-07-30)
Improvements
- Support of Magento 2.4
Fixed
- missing product in ImageBuilder
1.1.18 (2020-06-18)
Fixed
- Missing products when attribute rule enabled
1.1.17 (2020-05-27)
Fixed
- Unable to save image
- Cannot instantiate abstract class issue
- Multiple labels display issue; added out of stock option t rules
- Invalid template file error in system.log
1.1.16 (2020-03-17)
Fixed
- Wrong rule processing when multistore inventory enabled
1.1.15 (2020-01-20)
Feature
- Display labels without images
1.1.14 (2019-05-29)
Fixed
- Position issue on product list
1.1.13 (2019-01-23)
Fixed
- M2.3. Product Label does not show on catalog page
1.1.12 (2019-01-03)
Fixed
- M2.1. Solved compilation issue
1.1.11 (2018-11-29)
Improvements
- M2.3 support
1.1.11 (2018-11-29)
Improvements
- M2.3 support
1.1.10 (2018-11-28)
Fixed
- support of magento 2.3
1.1.9 (2018-08-16)
Fixed
- Installation issue with area code
1.1.8 (2018-07-18)
Fixed
- Fixed an issue with not clickable link for Label on Product List page
1.1.7 (2018-07-13)
Fixed
- Fixed Percent Discount
1.1.6 (2018-07-09)
Fixed
- Properly display labels based on Percent Discount condition
1.1.5 (2018-06-02)
Fixed
- Fixed Percent Discount if Advanced Pricing-Special Price is given in percent
1.1.4 (2018-06-13)
Fixed
- Fixed an issue with unexpected label on product page
1.1.3 (2018-05-31)
Fixed
- Fixed an issue related to the rule cancellation while cron starts
1.1.2 (2018-05-21)
Fixed
- Fixed Attribute Gallery styles
1.1.1 (2018-04-26)
Fixed
- Fix big amount of memory usage
- Fixed Percent Discount rule for bundle products
1.1.0 (2018-03-16)
Improvements
- Flush dependent pages cache after new product creating
1.0.16 (2018-03-09)
Fixed
- Fixed an error "Fatal error: Uncaught Error: Call to undefined method Magento\CatalogRule\Model\ResourceModel\Rule::calcProductPriceRule()"
1.0.15 (2018-01-29)
Fixed
- Fixed bottom label position for products that have a single image with no thumbnails displayed.
1.0.14 (2017-10-17)
Fixed
- Magento 2.2 compatibility
1.0.13 (2017-10-17)
Fixed
- Magento 2.2 compatibility
1.0.11 (2017-06-20)
Documentation
- Online User Manual updated
1.0.10 (2017-05-18)
Fixed
- Fixed usability issue: "Style" field made adjustable for "Manage Labels" Admin Panel page
- Fixed "Notice: Undefined variable: percent" for some stores
1.0.9 (2017-03-29)
Improvements
- Added possibility to define additional CSS styles for labels from Admin Panel
Fixed
- Fixed design issue - labels removed from shopping cart page
1.0.8 (2017-01-12)
Fixed
- Fixed design issue
1.0.7 (2016-12-27)
Improvement
- Added product attribute "Set as New" to label conditions
1.0.6 (2016-12-06)
Fixes
- Fixed cron errors
1.0.5 (2016-10-18)
Improvement
- Updated docs
1.0.4 (2016-09-05)
Fixes
- Fixed an issue when badge description is breaking product list view
1.0.3 (2016-06-30)
Fixes
- Fixed an issue when cataloglabel is displaying in minicart after product was added to cart from product list
1.0.2 (2016-06-30)
Fixes
- Compatibility to Magento 2.1
1.0.0 (2016-02-17)
- Initial release