- Posts: 21
- Thank you received: 1
Lable SALE, 10% etc...
- German Pagan
-
Topic Author
- Offline
- Junior Boarder
-
Less
More
11 years 2 months ago #6960
by German Pagan
Lable SALE, 10% etc... was created by German Pagan
How I can activate the tag sale, 11% etc.
Attachments:
Please Log in or Create an account to join the conversation.
- Nguyen Mai
-
- Offline
- Senior Boarder
-
Less
More
- Posts: 47
- Thank you received: 10
11 years 2 months ago #6972
by Nguyen Mai
Replied by Nguyen Mai on topic Re: Lable SALE, 10% etc...
You can edit files:
- 'templates/ot_naturalcosmetics/html/mod_virtuemart_product/default.php' line 64
- 'templates/ot_naturalcosmetics/html/com_virtuemart/category/default.php' line 286
- 'templates/ot_naturalcosmetics/html/com_virtuemart/virtuemart/default_products.php' line 60
- 'templates/ot_naturalcosmetics/html/com_virtuemart/productdetails/default_relatedproducts.php' line 61
change to
- 'templates/ot_naturalcosmetics/html/mod_virtuemart_product/default.php' line 64
- 'templates/ot_naturalcosmetics/html/com_virtuemart/category/default.php' line 286
- 'templates/ot_naturalcosmetics/html/com_virtuemart/virtuemart/default_products.php' line 60
- 'templates/ot_naturalcosmetics/html/com_virtuemart/productdetails/default_relatedproducts.php' line 61
Code:
<span class="product-discount"><?php echo JText::_('TPL_OT_SALE'); ?></span>
Code:
<?php $percent = ($product->prices['discountAmount'] / $product->prices['basePriceWithTax']) * 100; ?>
<span class="product-discount"><?php echo number_format($percent, 0); ?>%</span>
Please Log in or Create an account to join the conversation.
Time to create page: 0.183 seconds