Announcement

Collapse
No announcement yet.

delivery address without tick box

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

    delivery address without tick box

    Hi,

    can anyone tell me if is it possible rather than having to tick a check box to send the items to a different address, have the delivery address always come up a an option but with a check box to automatically fill in the address details if they are the same? as I have seen this on other sites but can not remember if it was with actinic, if this is not possible can you have the delivery address always come up?


    Many thanx

    John

    #2
    Hi John,

    If you want to always have the delivery address display you could try the following:

    Edit Act_LocationSelectTemplate.html.

    Look for...

    <TR>
    <TD COLSPAN="2" ALIGN="LEFT"><FONT FACE="ARIAL"
    SIZE="2">NETQUOTEVAR:INVOICEPROMPT016</FONT></TD>
    <TD><INPUT TYPE="CHECKBOX"
    NETQUOTEVAR:INVOICESEPARATECHECKSTATUS NAME="SEPARATESHIP"
    VALUE="YES"></TD>
    </TR>

    Comment this out by enclosing in <!-- and -->

    Insert...
    <INPUT TYPE="HIDDEN" NAME="SEPARATESHIP" VALUE="YES">

    This is the equivalent of always checking the box.

    Having a checkbox to automatically fill in the address details if they are the same is not something that is standard within Actinic but there may be someone out there who could write some javascript to extract the details from the session file.
    ********************
    Tracey
    SellerDeck

    Comment


      #3
      cool,

      many thanx Tracey I'll try that today

      Kind Regards

      John

      Comment

      Working...
      X