Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help How do I add My Contact info and privacy notice


lziobro

Recommended Posts

Posted

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...