Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Can't See all the Customer Details !


blckpanther57

Recommended Posts

Posted

Hello,

I am running a default installation of OSCommerce v2.2Ms2 and I cannot seem to get ALL the customer details to show up under Admin-->Configuration-->Customer Details. I only have Gender, DOB, Company, Suburb, and State visible. Is there a way to turn the rest of these on so that I can select them on/off on the create new account area ?

 

Thanks !

Posted

I figured this out ! Here's how to do it !

The key to customizing the customer field data is to edit in two places:

1. Edit the catalog\includes\application_top file and add all the fields that you want to use (i.e. define('ACCOUNT_GENDER', 'true'); )

2. In catalog\create_account.php, look in tables for the field that you want to add / remove (or you can add it yourself if it isn't there) and add a block :

<?php

if (ACCOUNT_GENDER == 'true') {

?>

 

before the <td> or <table> tag

and

 

<?php

}

?>

 

to close it up after the last <td> or <table> tag.

 

Hope this can help someone out !

Archived

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

×
×
  • Create New...