Try adding...
Code:
{if $discount gt 0}
<tr><td><font class="MarketPrice">{$lng.lbl_market_price}: <s>
{include file="currency.tpl" value=$products[product].list_price}
</s></font></td></tr>
{/if}
To your product.tpl directly above where it says
Code:
<tr><td class="ProductPriceConverting" valign="top">{$lng.lbl_price}:</td>
So that it looks like
Code:
{if $discount gt 0}
<tr><td><font class="MarketPrice">{$lng.lbl_market_price}: <s>
{include file="currency.tpl" value=$products[product].list_price}
</s></font></td></tr>
{/if}
<tr><td class="ProductPriceConverting" valign="top">{$lng.lbl_price}:</td>
It should do what you want, but I have not tested it.