I have searched the forums high and low for anyone trying to make sign up fields required such as the company name field.
It would be nice to have a controll in admin to do this, but as far as I can see the code controlling this is in
includes/modules/create_account.php
if ($error == true) {
// hook notifier class
$zco_notifier->notify('NOTIFY_FAILURE_DURING_CREATE_ACCOUNT');
} else {
$sql_data_array = array('customers_firstname' => $firstname,
'customers_lastname' => $lastname,
'customers_email_address' => $email_address,
'customers_nick' => $nick,
'customers_telephone' => $telephone,
'customers_fax' => $fax,
'customers_newsletter' => $newsletter,
'customers_email_format' => $email_format,
'customers_default_address_id' => '0',
'customers_password' => zen_encrypt_password($password),
'customers_authorization' => CUSTOMERS_APPROVAL_AUTHORIZATION
Has anyone done this ?