Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Too much required on signup


BZProd

Recommended Posts

Hello,

 

How can I change the customer information required on create_account.php  I would like to only require name and email.  Is there an easy way to do this?

 

God Bless,

Patrick

 

There is a contribution that addressess this... look in the contributions section.. don't recall the name, something with "Account".

 

Thanks,

Mattice

"Politics is the art of preventing people from taking part in affairs which properly concern them"

Link to comment
Share on other sites

Purchase without Account ask all the same info (for shipping purpose)

but all the customer info are in catalog/includes/modules/account_details.php

 

HTH

The_Bear

Link to comment
Share on other sites

I've deleted the code I don't need ie

 

<tr>

<td class="main"> <?php echo ENTRY_EMAIL_ADDRESS; ?></td>

<td class="main"> 

<?php

if ($is_read_only) {

echo $account['customers_email_address'];

} elseif ($error) {

if ($entry_email_address_error) {

echo tep_draw_input_field('email_address') . ' ' . ENTRY_EMAIL_ADDRESS_ERROR;

} elseif ($entry_email_address_check_error) {

echo tep_draw_input_field('email_address') . ' ' . ENTRY_EMAIL_ADDRESS_CHECK_ERROR;

} elseif ($entry_email_address_exists) {

echo tep_draw_input_field('email_address') . ' ' . ENTRY_EMAIL_ADDRESS_ERROR_EXISTS;

} else {

echo $email_address . tep_draw_hidden_field('email_address');

}

} else {

echo tep_draw_input_field('email_address', $account['customers_email_address']) . ' ' . ENTRY_EMAIL_ADDRESS_TEXT;

}

 

If I didn't need email address. Ive now got 7 pieces of info to collect! The page looks great where I,ve uploaded, only problem it doesn't work!!! I get this page up when a new client is added but it won't process past it!

 

My Account Information

 

Your Personal Details

Gender: Male

First Name: Phil

Last Name: Glover

E-Mail Address: [email protected]

 

Company Details

Company Name: FGfg

 

Your Address

Post Code: 4567

 

Your Contact Information

Telephone Number: 05 4567 8910

 

Options

eNewsletter; When its Critical!: Subscribed

 

Your Password

Password: --HIDDEN--

Life is a highway!

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...