Issue 76
Currency sign next to the price
This commit is contained in:
@@ -89,11 +89,11 @@
|
|||||||
<td class="unitprice">
|
<td class="unitprice">
|
||||||
{if $IS_PROMO == 1}
|
{if $IS_PROMO == 1}
|
||||||
{assign "real_price" $PROMO_TAXED_PRICE}
|
{assign "real_price" $PROMO_TAXED_PRICE}
|
||||||
<div class="special-price"><span class="price">{currency attr="symbol"} {$PROMO_TAXED_PRICE}</span></div>
|
<div class="special-price"><span class="price">{$PROMO_TAXED_PRICE} {currency attr="symbol"}</span></div>
|
||||||
<small class="old-price">{intl l="instead of"} <span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></small>
|
<small class="old-price">{intl l="instead of"} <span class="price">{$TAXED_PRICE} {currency attr="symbol"}</span></small>
|
||||||
{else}
|
{else}
|
||||||
{assign "real_price" $TAXED_PRICE}
|
{assign "real_price" $TAXED_PRICE}
|
||||||
<div class="special-price"><span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></div>
|
<div class="special-price"><span class="price">{$TAXED_PRICE} {currency attr="symbol"}</span></div>
|
||||||
{/if}
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
<td class="qty">
|
<td class="qty">
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="subprice">
|
<td class="subprice">
|
||||||
<span class="price">{currency attr="symbol"} {$real_price * $QUANTITY}</span>
|
<span class="price">{$real_price * $QUANTITY} {currency attr="symbol"}</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
<th class="total">{intl l="Total"}</th>
|
<th class="total">{intl l="Total"}</th>
|
||||||
<td class="total">
|
<td class="total">
|
||||||
<div class="total-price">
|
<div class="total-price">
|
||||||
<span class="price">{currency attr="symbol"} {cart attr="total_taxed_price"}</span>
|
<span class="price">{cart attr="total_taxed_price"} {currency attr="symbol"}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@@ -18,11 +18,11 @@
|
|||||||
|
|
||||||
{if $IS_PROMO == 1}
|
{if $IS_PROMO == 1}
|
||||||
{assign "real_price" $PROMO_TAXED_PRICE}
|
{assign "real_price" $PROMO_TAXED_PRICE}
|
||||||
<div class="special-price"><span class="price">{currency attr="symbol"} {$PROMO_TAXED_PRICE}</span></div>
|
<div class="special-price"><span class="price">{$PROMO_TAXED_PRICE} {currency attr="symbol"}</span></div>
|
||||||
<small class="old-price"> <span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></small>
|
<small class="old-price"> <span class="price">{$TAXED_PRICE} {currency attr="symbol"}</span></small>
|
||||||
{else}
|
{else}
|
||||||
{assign "real_price" $TAXED_PRICE}
|
{assign "real_price" $TAXED_PRICE}
|
||||||
<div class="special-price"><span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></div>
|
<div class="special-price"><span class="price">{$TAXED_PRICE} {currency attr="symbol"}</span></div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
{else}
|
{else}
|
||||||
{assign "real_price" $TAXED_PRICE}
|
{assign "real_price" $TAXED_PRICE}
|
||||||
{/if}
|
{/if}
|
||||||
<span class="qty">{$QUANTITY}</span> X <span class="price" style="font-size:1em;">{currency attr="symbol"}{$real_price}</span></div>
|
<span class="qty">{$QUANTITY}</span> X <span class="price" style="font-size:1em;">{$real_price} {currency attr="symbol"}</span></div>
|
||||||
{assign "total_price" $total_price + ($QUANTITY * $real_price)}
|
{assign "total_price" $total_price + ($QUANTITY * $real_price)}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="total">
|
<td class="total">
|
||||||
<div class="total-price">
|
<div class="total-price">
|
||||||
<span class="price">{currency attr="symbol"}{$total_price}</span>
|
<span class="price">{$total_price} {currency attr="symbol"}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@@ -134,7 +134,7 @@
|
|||||||
{/if}
|
{/if}
|
||||||
<label for="delivery-method_{$ID}">
|
<label for="delivery-method_{$ID}">
|
||||||
<input type="radio" name="{$name}" id="delivery-method_{$ID}"{if $isDeliveryMethodChecked} checked="checked"{/if} value="{$ID}">
|
<input type="radio" name="{$name}" id="delivery-method_{$ID}"{if $isDeliveryMethodChecked} checked="checked"{/if} value="{$ID}">
|
||||||
<strong>{$TITLE}</strong> / {currency attr="symbol"} {$POSTAGE}
|
<strong>{$TITLE}</strong> / {$POSTAGE} {currency attr="symbol"}
|
||||||
</label>
|
</label>
|
||||||
{/form_field}
|
{/form_field}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -103,18 +103,18 @@
|
|||||||
<td class="unitprice">
|
<td class="unitprice">
|
||||||
{if $IS_PROMO == 1}
|
{if $IS_PROMO == 1}
|
||||||
{assign "real_price" $PROMO_TAXED_PRICE}
|
{assign "real_price" $PROMO_TAXED_PRICE}
|
||||||
<div class="special-price"><span class="price">{currency attr="symbol"} {$PROMO_TAXED_PRICE}</span></div>
|
<div class="special-price"><span class="price">{$PROMO_TAXED_PRICE} {currency attr="symbol"}</span></div>
|
||||||
<small class="old-price">{intl l="instead of"} <span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></small>
|
<small class="old-price">{intl l="instead of"} <span class="price">{$TAXED_PRICE} {currency attr="symbol"}</span></small>
|
||||||
{else}
|
{else}
|
||||||
{assign "real_price" $TAXED_PRICE}
|
{assign "real_price" $TAXED_PRICE}
|
||||||
<div class="special-price"><span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></div>
|
<div class="special-price"><span class="price">{$TAXED_PRICE} {currency attr="symbol"} </span></div>
|
||||||
{/if}
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
<td class="qty">
|
<td class="qty">
|
||||||
<span class="price">{$QUANTITY}</span>
|
<span class="price">{$QUANTITY}</span>
|
||||||
</td>
|
</td>
|
||||||
<td class="subprice">
|
<td class="subprice">
|
||||||
<span class="price">{currency attr="symbol"} {$real_price * $QUANTITY}</span>
|
<span class="price">{$real_price * $QUANTITY} {currency attr="symbol"}</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@@ -127,7 +127,7 @@
|
|||||||
<th class="shipping">{intl l="Shipping Tax"}</th>
|
<th class="shipping">{intl l="Shipping Tax"}</th>
|
||||||
<td class="shipping">
|
<td class="shipping">
|
||||||
<div class="shipping-price">
|
<div class="shipping-price">
|
||||||
<span class="price">{currency attr="symbol"} {order attr="postage"}</span>
|
<span class="price">{order attr="postage"} {currency attr="symbol"}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
<th class="total">{intl l="Total"}</th>
|
<th class="total">{intl l="Total"}</th>
|
||||||
<td class="total">
|
<td class="total">
|
||||||
<div class="total-price">
|
<div class="total-price">
|
||||||
<span class="price">{currency attr="symbol"} {{cart attr="total_taxed_price"} + {order attr="postage"}}</span>
|
<span class="price">{{cart attr="total_taxed_price"} + {order attr="postage"}} {currency attr="symbol"}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user