Pulling Out The Last Quantity Price

Questions and answers about ShopSite Custom Templates
Post Reply
tmlogo
Posts: 110
Joined: Tue Jun 17, 2008 3:00 pm

Pulling Out The Last Quantity Price

Post by tmlogo »

I was looking to be able to add something like "As Low as $xx.xx" to some of my product templates. This number would be the last column price in the quantity pricing. Is there a way to do this? Thanks in Advance
cyoung
Posts: 146
Joined: Wed Nov 09, 2016 11:01 am

Re: Pulling Out The Last Quantity Price

Post by cyoung »

There isn't a built in template that does this , it could be added with JavaScript.

It would be something like this:

<!-- place this DIV where you want the "starting at" price to be displayed -->
[-- IF PRODUCT.QuantityPricing --][-- IF PRODUCT.DisplayQuantityPricing --]<div id="low-price"></div>[-- END_IF --][-- END_IF --]

<!-- note, this code only works if the quantity pricing DOES NOT have a comment/description field...so the last row is always a pricing row -->
<script>
var lowprc = ss_jQuery(".quantity-price table tr:last-child td:last-child").html();
ss_jQuery("#high-end").html(lowprc);
</script>
tmlogo
Posts: 110
Joined: Tue Jun 17, 2008 3:00 pm

Re: Pulling Out The Last Quantity Price

Post by tmlogo »

Thank you. I will give it a try
tmlogo
Posts: 110
Joined: Tue Jun 17, 2008 3:00 pm

Re: Pulling Out The Last Quantity Price

Post by tmlogo »

Unfortunately I was not able to get it to work. Any further suggestions? Thanks
tmlogo
Posts: 110
Joined: Tue Jun 17, 2008 3:00 pm

Re: Pulling Out The Last Quantity Price

Post by tmlogo »

EstJoe wrote:
tmlogo wrote:I was looking to be able to add something like "As Low as $xx.xx" to some of my product templates. This number would be the last column price in the quantity pricing. Is there a way to do this? Thanks in Advance
Have you already created the code or you expecting new one?
I’m all set. Thank you
Post Reply