I'm trying to figure out how to add a blank line if the item is not on sale. Specifically in the products view, if the item is on sale, the cart shows Market price and price, which is fine.. but I want it to add a blank line where Market Price would be if the item is not on sale, if that makes sense?
Basically, I am trying to get the buy now / add to wish list buttons to print on the same line so it is uniform.
I tried this in the products_t.tpl
Code:
{if $discount gt 0}
<font class="MarketPrice">{$lng.lbl_market_price}: <s>
{include file="currency.tpl" value=$products[product].list_price}
</s></font><br />
{if $discount eq 0}<br /><br />
{/if}
{/if}
But that did not change anything. Can anyone help me with this please?