lziobro Posted November 18, 2002 Posted November 18, 2002 How do I add My Contact info and privacy notice Larry Ziobro
zzfritz Posted November 18, 2002 Posted November 18, 2002 You enter the text for the privacy notice in the define of TEXT_INFORMATION in catalog/includes/languages/english/privacy.php. I managed to use the same text as contained in our w3c privacy notice, taking it from a file so it doesn't have to be maintained in two separate places. Use something like this to import the contents of a file: $privacy_txt = implode ('', file ('http://<your domain>/privacy_body.txt')); define('TEXT_INFORMATION', $privacy_txt); This an effective technique to use in several of osC's tailorable text defines, rather than worry about typing extended narratives into the code.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.