panosm9944 Posted September 28 Share Posted September 28 (edited) Hello! I am using PS version 8.1.3 and i am trying to figure out what to edit for the total to appear as per the second screenshot. Here you will find an example of what i am trying to do Edited September 30 by panosm9944 (see edit history) Link to comment Share on other sites More sharing options...
ventura Posted September 29 Share Posted September 29 In this file themes/your_theme/templates/customer/_partials/order-detail-no-return.tpl change this <tr class="text-xs-right line-{$order.totals.total.type}"> <td colspan="3">{$order.totals.total.label}</td> <td>{$order.totals.total.value}</td> </tr> for this <tr class="text-xs-right line-{$order.totals.total_excluding_tax.type}"> <td colspan="3">{$order.totals.total_excluding_tax.label}</td> <td>{$order.totals.total_excluding_tax.value}</td> </tr> <tr class="text-xs-right line-{$order.totals.total_including_tax.type}"> <td colspan="3">{$order.totals.total_including_tax.label}</td> <td>{$order.totals.total_including_tax.value}</td> </tr> Link to comment Share on other sites More sharing options...
panosm9944 Posted September 29 Author Share Posted September 29 It worked like a charm! Thank you :) Link to comment Share on other sites More sharing options...
Divine Posted September 30 Share Posted September 30 Hello, Don't forget to edit your first post and add [Solved] in the title Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now