I'd like to display the amount of the discount instead of the discounted price in the quantity discount table of the product listing page. Why? Because of MAP...I can't display the discounted price.
So, if my discount is $5 off when you buy 5-999 items (as defined in the products discount tab), I want the table to say "5-999 Save $5 per item" or something like that.
I currently have the code commented out so the table doesn't display and I have the discount info in the product description. I'd like to use the table to make the discount more obvious before people bounce. Appreciate any thoughts. Code snippet is from listing_0.html.
<!--START: quantity-->
<div class="quantityBlock">
<a href="javascript:void(0);" id="showQtyTable"><i class="icon-down-open"></i> [product_Header-quantitypricing]</a>
<div class="clear"></div>
<div class="quantity-table" style="display: block;">
<div class="title-header">[product_quantitypricing-quantity]</div>
<div class="title-header">[product_quantitypricing-price]</div>
<div class="clear"></div>
<ul>
<!--START: quantity_items-->
<li>[lowbound][highbound]</li>
<li>[PRICE]</li>
<!--END: quantity_items-->
</ul>
<div class="clear"></div>
</div>
</div>
<!--END: quantity-->
So, if my discount is $5 off when you buy 5-999 items (as defined in the products discount tab), I want the table to say "5-999 Save $5 per item" or something like that.
I currently have the code commented out so the table doesn't display and I have the discount info in the product description. I'd like to use the table to make the discount more obvious before people bounce. Appreciate any thoughts. Code snippet is from listing_0.html.
<!--START: quantity-->
<div class="quantityBlock">
<a href="javascript:void(0);" id="showQtyTable"><i class="icon-down-open"></i> [product_Header-quantitypricing]</a>
<div class="clear"></div>
<div class="quantity-table" style="display: block;">
<div class="title-header">[product_quantitypricing-quantity]</div>
<div class="title-header">[product_quantitypricing-price]</div>
<div class="clear"></div>
<ul>
<!--START: quantity_items-->
<li>[lowbound][highbound]</li>
<li>[PRICE]</li>
<!--END: quantity_items-->
</ul>
<div class="clear"></div>
</div>
</div>
<!--END: quantity-->
Comment