Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Where can I include important customer information for it to display on our website


Guest

Recommended Posts

Posted

I need to add shipping and returns, contact us, FAQ, privacy policy and various other information to my website.

How do I do this?

Posted

Or you could do what a lot of people do and copy the code pages for something like conditions, replace a few bits of test, add code to the filenames file and add links. There are several threads on how to do this.

 

So if you copy the conditions file in your root folder you need to rename it to say privacy.php. Open this file and change FILENAME_CONDITIONS to FILEMANE_PRIVACY. Save the file and upload to your server.

 

Next copy the includes/language/english/conditions.php to your computer and renane the file to privacy. Open this file and alter define('NAVBAR_TITLE', 'Terms and Conditions');

and define('HEADING_TITLE', 'Terms and Conditions'); to define('NAVBAR_TITLE', 'Privacy');and define('HEADING_TITLE', 'Privacy');. Save the file and upload to your server.

 

Next open includes/filenames.php and add define('FILENAME_PRIVACY', 'privacy.php'); to that file. Save and upload the file.

 

Now open the includes/modules/boxes/information.php file and add ' <a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . MODULE_BOXES_INFORMATION_BOX_PRIVACY . '</a><br />' . where all the other links are. Save the file and upload to your server.

 

Hopefully I havent missed anything, but I am sure that someone will soon point out if I have. You can create as many new pages as you like using this method.

REMEMBER BACKUP, BACKUP AND BACKUP

Archived

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

×
×
  • Create New...