Announcement

Collapse
No announcement yet.

Delivery Address

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

    Delivery Address

    Is there anyway of always showing the delivery address page.

    My site is setup with customer accounts but I would always like them to verify their delivery address before completing the order.

    Thanks in advance

    Julian

    #2
    On the 'Buyers' tab for the customer account you need to select the second option for the 'Delivery Address', which is 'Allow Selection but default to this address'.

    Kind regards,
    Bruce King
    SellerDeck

    Comment


      #3
      Delivery Address

      This doesnt seem to make any difference...

      I have this option selected for all the accounts but if they dont select seperate invoice and delivery address the delivery address pages seems to get skipped.

      Any ideas?

      Thanks in advance

      Julian

      Comment


        #4
        Julian,

        If you go to the 'Design' tab and use the 'Select Page Type' drop-down to select 'Checkout Page 0' , then select the bit that deals with shipping to a different delivery address in the preview pane. That should highlight this bit of code in the 'Layout code' pane below ..
        Code:
        <TD colspan="2" align="LEFT" class="actsmall" width="631"><actinic:variable name="InvoicePrompt016"/></TD>
        The next line reads
        Code:
        <TD width="50"><INPUT TYPE="CHECKBOX" <actinic:variable name="InvoiceSeparateCheckStatus"/> NAME="SEPARATESHIP" VALUE="YES"></TD>
        Edit this to add in CHECKED="CHECKED" so it looks like ..
        Code:
        <TD width="50"><INPUT TYPE="CHECKBOX" <actinic:variable name="InvoiceSeparateCheckStatus"/> NAME="SEPARATESHIP" CHECKED="CHECKED" VALUE="YES"></TD>
        This will make the option always selected by default. Apply the changes and update the site.

        Kind regards,
        Bruce King
        SellerDeck

        Comment


          #5
          Thanks

          Will give it a try.

          Thanks for all your help

          Comment


            #6
            Delivery Address

            Thanks for that... all works fine.

            Just one last thought!

            Is it possible to hide this option from view altogether as it is not really necessary for out particular site.

            Thanks in advance

            Julian.

            Comment

            Working...
            X