I don,t need the the login php any more, as it would be for one customer only, always
There are 2 ways for archieving this:
1- Making it to go straight from shopping cart to payment/shipping
2- going to login.php and there having only the continue button
I suppose that is in this 2 bits of code where changes has to be done,
In stead of having to chose customer, i whant always to be customer Joe and going to next step to checkout_payment.php or shipping
LINE 22
$error = false;
if (isset($HTTP_GET_VARS[action]) && ($HTTP_GET_VARS[action] == process)) {
$email_address = tep_db_prepare_input($HTTP_POST_VARS[email_address]);
$password = tep_db_prepare_input($HTTP_POST_VARS[password]);
// Check if email exists
$check_customer_query = tep_db_query("select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id from " . TABLE_CUSTOMERS . " where customers_email_address = " . tep_db_input($email_address) . "");
if (!tep_db_num_rows($check_customer_query)) {
$error = true;
} else {
$check_customer = tep_db_fetch_array($check_customer_query);
// Check that password is good
if (!tep_validate_password($password, $check_customer[customers_password])) {
$error = true;
} else {
if (SESSION_RECREATE == True) {
tep_session_recreate();
}
$check_country_query = tep_db_query("select entry_country_id, entry_zone_id from " . TABLE_ADDRESS_BOOK . " where customers_id = " . (int)$check_customer[customers_id] . " and address_book_id = " . (int)$check_customer[customers_default_address_id] . "");
$check_country = tep_db_fetch_array($check_country_query);
$customer_id = $check_customer[customers_id];
$customer_default_address_id = $check_customer[customers_default_address_id];
$customer_first_name = $check_customer[customers_firstname];
$customer_country_id = $check_country[entry_country_id];
$customer_zone_id = $check_country[entry_zone_id];
tep_session_register(customer_id);
tep_session_register(customer_default_address_id);
tep_session_register(customer_first_name);
tep_session_register(customer_country_id);
tep_session_register(customer_zone_id);
LINE 183
<tr>
<td class="main"><b><?php echo ENTRY_EMAIL_ADDRESS; ?></b></td>
<td class="main"><?php echo tep_draw_input_field(email_address); ?></td>
</tr>
<tr>
<td class="main"><b><?php echo ENTRY_PASSWORD; ?></b></td>
<td class="main"><?php echo tep_draw_password_field(password); ?></td>
</tr>
thanks