PDA

View Full Version : delivery address without tick box


johnlam
04-Jan-2004, 07:19 PM
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

TraceyG
05-Jan-2004, 11:46 AM
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.

johnlam
15-Jan-2004, 04:08 PM
cool,

many thanx Tracey I'll try that today :)

Kind Regards

John