Here is my /catalog/includes/languages/english/extra_definitions/additional_customers_fields_create_account.php
I am still getting multiple fields on my customer registration page. I only create sales_rep in my database.
PHP Code:
<?php
//----------------------------------------------------------------------------------------
//--- Additional customers fields MOD v2.1 -----------------------------------------------
//----------------------------------------------------------------------------------------
// --- Coded by TheOracle on June 16 2007. -----------------------------------------------
// --- Support: http://www.zen-cart.com/forum --------------------------------------------
// --- Designed for Zen-Cart v1.3x versions ----------------------------------------------
//----------------------------------------------------------------------------------------
// If you like this MOD, please send a donation to: scoutch###################### . ------------------
//----------------------------------------------------------------------------------------
// Defines the additional customers fields title in order to show in HTML forms.
define('ENTRY_ADDITIONAL_CUSTOMERS_FIELDS_TITLE', 'Sales Representative');
define('HEADING_TITLE', '');
// Defines the hobbies title name for the additional customers fields.
$additional_customers_fields_form_create_account_textarea_title['customers_hobbies'] = array('Hobbies: ');
// Defines the customers sales representative for the additional customers fields.
$additional_customers_fields_form_create_account_pull_down_title['sales_rep'] = array('Sales Representative: ');
$additional_customers_fields_form_create_account_pull_down_content['sales_rep'] = array("None", "Mel Kimmel", "Boyd Thomas");
// Defines the customers cellphone number for the additional customers fields.
$additional_customers_fields_form_create_account_input_title['customers_cellphone'] = array('Cellphone: ');
// defines the customers age (radio button version):
$additional_customers_fields_form_create_account_radio_title['customers_pod'] = array('POD: ');
$additional_customers_fields_form_create_account_radio_content['customers_pod'] = array(1, 2, 3, 4, 5);
?>
let me know if you need other files.