Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: Display order: taxed shipping cost BEFORE tax amount in shopping cart checkout?

  1. #1
    dov is offline Junior Member
    Join Date
    May 2013
    Posts
    17

    Question Display order: taxed shipping cost BEFORE tax amount in shopping cart checkout?

    I currently have a shipping cost with tax added to products & shipping.

    However, in the cart summary it is displaying tax before the shipping cost which looks strange! Shipping should display BEFORE tax (GST) as it is being taxed..

    Source is as follows (obviously the tr's must be swapped around but I cannot find the control for this outside of shoppingcart.aspx)

    <tbody>
    <%--Need to swap this tr--%>
    <tr>
    <td style="padding-right:4px;" class="shoppingcartlbl_estimated" align="right">
    <span id="ctl00_PageContent_ctrlCartSummary_lblTaxCaptio n">GST</span></td>
    <td style="padding-right:14px;" class="shoppingcartlbl_estimated" align="right"><span id="ctl00_PageContent_ctrlCartSummary_lblTax">$2.2 0</span></td>
    </tr>
    <%--With this tr--%>
    <tr>
    <td style="padding-right:4px;" align="right">
    <table style="width:100%" border="0" cellpadding="0" cellspacing="0">
    <tbody>
    <tr>
    <td class="shoppingcartlbl_estimated" style="font-size: 18px;" align="right"><span id="ctl00_PageContent_ctrlCartSummary_lblShippingC aption">Shipping</span></td>
    </tr>
    </tbody>
    </table></td>
    <td style="padding-right:14px;" class="shoppingcartlbl_estimated" align="right"><span id="ctl00_PageContent_ctrlCartSummary_lblShippingC ost">$9.00</span></td>
    </tr>
    </tbody>
    Name:  Screen shot 2013-06-23 at 2.26.10 PM.png
Views: 12
Size:  13.2 KB
    Last edited by dov; 06-22-2013 at 10:30 PM.

  2. #2
    dov is offline Junior Member
    Join Date
    May 2013
    Posts
    17

    Default

    Anyone have an idea for this issue? Thanks