Announcement

Collapse
No announcement yet.

Displaying total price before going to HSBC

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Displaying total price before going to HSBC

    Hello

    I am conscious that when customers go through my buying process, they get to the screen where they are asked for thier billing address, and at the bottom, it confirms the Shipping costs. I have stripped everything out so that there is 1 line 'Shipping Cost = $x.xx'

    At this point, is it possible to also give a total price. The total price including shipping is included in my cart at the top right of the page but I dont think that people will refer to this at this stage given that they are looking at the bottom of the page with a next button next to it.

    (link to store if reqd http://www.fidelity dj.co.uk/acatalog/In_Store.html)

    So, can I add a line after shipping price to show the total total price, prior to redirecting the customer to HSBC.

    Thanks

    Steven

    #2
    You can use code similar to the following in Act_Order01.html...
    Code:
      Order Total:<script language="JavaScript">document.write(getCartItem(1));</script>
    The total price will also be shown on the next page, where customers select their payment method and you have the 'General Information' questions.

    Comment

    Working...
    X