Magento – Remove second price from frontend display

catalog-price-rulespricetierprice

Ok so I have a few products that have tier pricing enabled for, the thing that is annoying me is that on the product catalog page when I click the category that it's in it has 2 prices displayed.

For example I have one product with 3 tiers of pricing. Say $40 is the normal price, $35 if you buy 2 of them, and $25 if you buy 3. On the category page it would show $40 on top and $25 underneath that. How do I remove the $25 dollar price and just keep the main price?

Best Answer

Let's take Hyper Potion product as example : There is two price : 60.00$ and 15.00$

If I understand well you want to remove 15.00$. Why don't you use CSS for that ?

skin/frontend/default/ves_hitech/css/style.css line no 1499

.minimal-price-link { display: none; }
Related Topic