PDA

View Full Version : <Actinic:COOKIECHECK/>


Nick
08-Jan-2004, 04:19 PM
Hi

Just curious.... can anyone tell me what <Actinic:COOKIECHECK/> is for in the primary template?

(no mention of it in the AUG).


Regards

Nick

cdicken
09-Jan-2004, 08:45 AM
It becomes code similar to the following:

<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
if (document.cookie.indexOf("ACTINIC_CART=") == -1)
document.location.replace("http://URL of cookie error message page/");
</SCRIPT>

Basically, if there is no cookie formed on the PC, due to privacy settings, it automatically forewards customers to a page containing details about what to do.

Nick
09-Jan-2004, 08:57 AM
Thanks Chris

Useful bit of information.

One other question - can the text of the cookie error message be found in Design | Options | Text ?


Regards

Nick

cdicken
09-Jan-2004, 10:43 AM
Yes, it's prompt ID 52 (or just search for the word 'cookie'). Right-click on the field and select 'Zoom' to open it in a larger window.