Skip to content

Commit

Permalink
Update order-confirmation-table.tpl
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaiMagal authored Nov 7, 2024
1 parent fb07f25 commit ad05d80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/checkout/_partials/order-confirmation-table.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@
<table>
{foreach $subtotals as $subtotal}
{if $subtotal !== null && $subtotal.type !== 'tax' && $subtotal.label !== null}
<tr>
<tr class="subtotal_type_{$subtotal.type}">
<td>{$subtotal.label}</td>
<td>{if 'discount' == $subtotal.type}-&nbsp;{/if}{$subtotal.value}</td>
</tr>
{/if}
{/foreach}

{if !$configuration.display_prices_tax_incl && $configuration.taxes_enabled}
<tr>
<tr class="total-taxes">
<td><span class="text-uppercase">{$totals.total.label}&nbsp;{$labels.tax_short}</span></td>
<td>{$totals.total.value}</td>
</tr>
Expand Down

0 comments on commit ad05d80

Please sign in to comment.