Add Sales Price (discounted) in Search Page results
Is it possible to show the sales price of the product in the search page results...this is the current code in that page..I just want to do that to show if the product is in a UK store (Pounds sign) or US store (dollar sign). Now the search is for all and it does not differentiate if you can buy it in one store or another thriftytraveling.com/store
-------------
<!-- Search Results -->
<div class="pl">
[product.each]
<div class="t3 col1">
<div class="bdr">
<div class="lc">
<div class="thmb"><a href="[product.link]" title="[product.name]">[product.thumbnail tag='1']</a></div>
</div>
<div class="rc">
<h2><a href="[product.link]" title="[product.name]">[product.name]</a></h2>
<p class="desc">
<a href="[server.url query='view=search']?merchant=[product.merchant]" title="View all products from [product.merchant]">
<!-- took out this line to remove product merchant logo -->
</a>
[product.description cut='20 words']</p>
</div>
<div class="clearingdiv"> </div>
</div>
</div>
[product.end]
<div class="clearingdiv"> </div>
</div>
<!-- /Search Results -->
|