Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I add an About Us?


Aye Poppin

Recommended Posts

Posted

Use one of your information pages as a base, for example your unmodified privacy.php.

 

Create a new file base on catalog/privacy.php

 

Rename it to aboutus.php

 

Change the following code within the file:

 

require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CONDITIONS);

 

$breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_CONDITIONS));

 

To:

 

require(DIR_WS_LANGUAGES . $language . '/' . ABOUT_US);

 

$breadcrumb->add(NAVBAR_TITLE, tep_href_link(ABOUT_US));

 

upload it to catalog

 

Do the same with your catalog/includes/language/english/privacy.php

 

upload it to:

 

catalog/includes/language/english/

 

then in includes/filenames

 

add:

 

define('ABOUT_US', 'about_us.php');

 

I think thats it by memory, if not Im sure someone will correct me.

Archived

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

×
×
  • Create New...