Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Account information Page help


kennylee

Recommended Posts

After getiing my page right where it neede to be I went to the Account information Page and found this -

 

FORM_REQUIRED_INFORMATION

Gender: Male Female ENTRY_GENDER_TEXT

First Name: ENTRY_FIRST_NAME_TEXT

Last Name: ENTRY_LAST_NAME_TEXT

Date of Birth: ENTRY_DATE_OF_BIRTH_TEXT

E-Mail Address: ENTRY_EMAIL_ADDRESS_TEXT

Company

Company name: ENTRY_COMPANY_TEXT

Address

Street Address: ENTRY_STREET_ADDRESS_TEXT

Suburb: ENTRY_SUBURB_TEXT

Post Code: ENTRY_POST_CODE_TEXT

City: ENTRY_CITY_TEXT

State: ENTRY_STATE_TEXT

Country: PULL_DOWN_ENTRY_COUNTRY_TEXT

Contact

Telephone Number: ENTRY_TELEPHONE_NUMBER_TEXT

Fax Number: ENTRY_FAX_NUMBER_TEXT

Options

Newsletter: ENTRY_NEWSLETTER_TEXT

CATEGORY_PASSWORD

ENTRY_PASSWORD ENTRY_PASSWORD_TEXT

ENTRY_PASSWORD_CONFIRMATION ENTRY_PASSWORD_CONFIRMATION_TEXT

 

do i have to define all of theese or is there a simpler way. and what script is it setting in. thanks

Kenny Lee

Link to comment
Share on other sites

There is a file called english.php inside your </>root or <catalog>/includes/languages folder.

Those should have been defined in there. Here's an excerpt from that file.

define('ENTRY_COMPANY', 'Company Name:');

define('ENTRY_COMPANY_ERROR', '');

define('ENTRY_COMPANY_TEXT', '');

define('ENTRY_GENDER', 'Gender:');

define('ENTRY_GENDER_ERROR', 'Please select your Gender.');

define('ENTRY_GENDER_TEXT', '*');

define('ENTRY_FIRST_NAME', 'First Name:');

define('ENTRY_FIRST_NAME_ERROR', 'Your First Name must contain a minimum of ' . ENTRY_FIRST_NAME_MIN_LENGTH . ' characters.');

define('ENTRY_FIRST_NAME_TEXT', '*');

define('ENTRY_LAST_NAME', 'Last Name:');

define('ENTRY_LAST_NAME_ERROR', 'Your Last Name must contain a minimum of ' . ENTRY_LAST_NAME_MIN_LENGTH . ' characters.');

define('ENTRY_LAST_NAME_TEXT', '*');

define('ENTRY_DATE_OF_BIRTH', 'Date of Birth:');

define('ENTRY_DATE_OF_BIRTH_ERROR', 'Your Date of Birth must be in this format: MM/DD/YYYY (eg 05/21/1970)');

define('ENTRY_DATE_OF_BIRTH_TEXT', '* (eg. 05/21/1970)');

define('ENTRY_EMAIL_ADDRESS', 'E-Mail Address:');

You probably misplaced or deleted that file.

Nonetheless, download osC from blue solutions tab and place it in there.

It's inside <catalog>/includes/languages folder.

Link to comment
Share on other sites

There is a file called english.php inside your </>root or <catalog>/includes/languages folder.

Those should have been defined in there. Here's an excerpt from that file.

 

You probably misplaced or deleted that file.

Nonetheless, download osC from blue solutions tab and place it in there.

It's inside <catalog>/includes/languages folder.

Thanks bryce !

Kenny Lee

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...