Order-info total price
Posted: Thu May 16, 2019 11:59 pm
Hi there!
On the customer side, order info page, final price indicates with the code
And that look like this
or like this if just use total.text
how can still show just the final price? It is necessary for order info on customer side?
OC 3.0.2.0
Thank you!
On the customer side, order info page, final price indicates with the code
Code: Select all
{% for total in totals %}
<tr>
<td colspan="4"></td>
<td class="text-right"><b>{{ total.title }}</b></td>
<td class="text-right">{{ total.text }}</td>
{% if products %}
<td></td>
{% endif %} </tr>
{% endfor %}
Code: Select all
Sub-Total
$80.00 Flat Shipping Rate
$5.00 Total
$85.00
Code: Select all
$80.00 $5.00 $85.00
OC 3.0.2.0
Thank you!