I need help on Tier Prices, I am a wholesaler so the word each will confuse the buyers, I am trying to add the word “case” fon the <ul class=”tier-prices product-pricing“>
for example here is what it displays now
- Buy 3 for $63.00 each and save 7%
- Buy 6 for $58.50 each and save 14%
- Buy 12 for $47.25 each and save 30%
I need to for it to display as
- Buy 3 for $63.00 each case and save 7%
- Buy 6 for $58.50 each case and save 14%
- Buy 12 for $47.25 each case and save 30%
I am lookinng at /app/design/frontend/YOUR_PACKAGE/YOUR_THEME/template/catalog/product/view/tierprices.phtml
Howeever, I need help where to insert the word “case” at.
http://cinetinee.info/default_en/round-candle-cover/round-3-18-diameter-candle-cover-with-hole-clear-pvc.html
Carlos
1 answer
Hi Carlos Sagastume,
Let’s copy the template file from app/design/frontend/base/default/template/catalog/product/view/tierprices.phtml
and paste it to current theme of your site at /app/design/frontend/ubertheme/techzone/template/catalog/product/view/tierprices.phtml
and then, you can change the text as you want as below:
find to the code at line 189
<?php echo $this->__('and') ?> <strong class="benefit"><?php echo $this->__('save')?> <span class="percent tier-<?php echo $_index;?>"><?php echo $_price['savePercent']?></span>%
<?php endif ?></strong>
and replace it by
<?php echo $this->__('case') ?> <?php echo $this->__('and') ?> <strong class="benefit"><?php echo $this->__('save')?> <span class="percent tier-<?php echo $_index;?>"><?php echo $_price['savePercent']?></span>%
<?php endif ?></strong>
and clean the Magento cached after your changing.
Do it and let me know how it goes.
Regards,
Mall.