Guest Posted November 27, 2013 Posted November 27, 2013 I need to add shipping and returns, contact us, FAQ, privacy policy and various other information to my website. How do I do this?
Guest Posted November 27, 2013 Posted November 27, 2013 Hi, As you need several new pages You can try this addon (for unlimited pages): http://addons.oscommerce.com/info/1026 For FAQ: http://addons.oscommerce.com/info/1106 Or search for better one in addons.oscommerce.com
♥14steve14 Posted November 27, 2013 Posted November 27, 2013 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
burt Posted November 27, 2013 Posted November 27, 2013 In addition to the post of @@14steve14 : http://www.oscommerce.com/forums/topic/393087-changing-the-text-on-a-page/
Recommended Posts
Archived
This topic is now archived and is closed to further replies.