Skip to content

Commit cacf43e

Browse files
committed
novator: badge SALE fix. ACORN-1622
1 parent dc4c3a3 commit cacf43e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

public_html/extensions/novator/storefront/view/novator/template/blocks/product_cell_grid.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<?php } ?>
2828
<div class="row g-4">
2929
<?php
30-
$text_sale = $this->language->get('text_badge_sale','novator/novator');
30+
$text_sale = $this->language->get('text_badge_sale');
3131
$text_sale = $text_sale == 'text_badge_sale' ? 'SALE' : $text_sale;
3232
$tax_exempt = $this->customer->isTaxExempt();
3333
$config_tax = $this->config->get('config_tax');

public_html/extensions/novator/storefront/view/novator/template/blocks/product_listing.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
$tax_exempt = $this->customer->isTaxExempt();
1515
$config_tax = $this->config->get('config_tax');
16-
$text_sale = $this->language->get('text_badge_sale','novator/novator');
16+
$text_sale = $this->language->get('text_badge_sale');
1717
$text_sale = $text_sale == 'text_badge_sale' ? 'SALE' : $text_sale;
1818

1919
foreach ($products as $product) {

public_html/extensions/novator/storefront/view/novator/template/blocks/product_multiple_carousel.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if($products){ ?>
2727
$imgW = $imgW ?? $this->config->get('config_image_product_width');
2828
$imgH = $imgH ?? $this->config->get('config_image_product_height');
2929
$wishlist = $wishlist ?? $this->customer->getWishlist();
30-
$text_sale = $this->language->get('text_badge_sale','novator/novator');
30+
$text_sale = $this->language->get('text_badge_sale');
3131
$text_sale = $text_sale == 'text_badge_sale' ? 'SALE' : $text_sale;
3232
$tax_exempt = $this->customer->isTaxExempt();
3333
$config_tax = $this->config->get('config_tax');

public_html/extensions/novator/storefront/view/novator/template/pages/account/wishlist.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<?php } ?>
2727
<div class="row g-4">
2828
<?php
29-
$text_sale = $this->language->get('text_badge_sale','novator/novator');
29+
$text_sale = $this->language->get('text_badge_sale');
3030
$text_sale = $text_sale == 'text_badge_sale' ? 'SALE' : $text_sale;
3131
$tax_exempt = $this->customer->isTaxExempt();
3232
$config_tax = $this->config->get('config_tax');

0 commit comments

Comments
 (0)