Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Condition of Use


sballen

Recommended Posts

Posted

Suppose I go to catalog/condition.php and FTP condition.php to my computer, and edit it to become International Order Policy, and then upload it to catalog/international.php.

 

Now how do I get 'International Orders' to appear in the lower left INFORMATION BOX with 'Shipping Policy', 'Privacy Notice', 'Condition of Use' and 'Contact Us'?

 

Speaking of the left column, how do I widen it by just a couple or three more digits?

 

Also, what color is the bluist gray of the osCommerce pages, I can never match it, does anyone know the digit numbers that make up that color?

Posted

Suppose I go to catalog/condition.php and FTP condition.php to my computer, and edit it to become International Order Policy, and then upload it to catalog/international.php.

 

Now how do I get 'International Orders' to appear in the lower left INFORMATION BOX with 'Shipping Policy', 'Privacy Notice', 'Condition of Use' and 'Contact Us'?

 

Speaking of the left column, how do I widen it by just a couple or three more digits?

 

Also, what color is the bluist gray of the osCommerce pages, I can never match it, does anyone know the digit numbers that make up that color?

 

Re: creating a new static file .. there are posts here about it but I can't remember where so ..

 

1) Take a static file like catalog/privacy.php just change 2 things before ftp(ing) back up as international.php

 

Change FILENAME_PRIVACY to FILENAME_INTERNATIONAL_ORDERS ( there are 2 instances to change ).

 

2) Download includes/filenames.php

 

Find ..

 

define('FILENAME_INFO_SHOPPING_CART', 'info_shopping_cart.php');

 

Add after ..

define('FILENAME_INTERNATIONAL_ORDERS', 'international.php');

 

Upload changed file.

 

3) download includes/languages/[MY LANGUAGE].php

 

Find ..

 

define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');

 

Add below ..

 

define('BOX_INFORMATION_INTERNATIONAL', 'International');

 

4) Create a brand new file called international.php containing ..

 

<?php

define( 'TITLE', 'My International Title' );
define( 'HEADING_TITLE', 'My International Heading Title' );
define( 'TEXT_INFORMATION', 'My International Main Test' );

 

Save/upload the file into includes/languages/[MY LANGUAGE]/international.php

 

Job Done.

Posted

Re: creating a new static file .. there are posts here about it but I can't remember where so ..

 

1) Take a static file like catalog/privacy.php just change 2 things before ftp(ing) back up as international.php

 

Change FILENAME_PRIVACY to FILENAME_INTERNATIONAL_ORDERS ( there are 2 instances to change ).

 

2) Download includes/filenames.php

 

Find ..

 

define('FILENAME_INFO_SHOPPING_CART', 'info_shopping_cart.php');

 

Add after ..

define('FILENAME_INTERNATIONAL_ORDERS', 'international.php');

 

Upload changed file.

 

3) download includes/languages/[MY LANGUAGE].php

 

Find ..

 

define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');

 

Add below ..

 

define('BOX_INFORMATION_INTERNATIONAL', 'International');

 

4) Create a brand new file called international.php containing ..

 

<?php

define( 'TITLE', 'My International Title' );
define( 'HEADING_TITLE', 'My International Heading Title' );
define( 'TEXT_INFORMATION', 'My International Main Test' );

 

Save/upload the file into includes/languages/[MY LANGUAGE]/international.php

 

Job Done.

  • 1 year later...

Archived

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

×
×
  • Create New...