Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Login/create profile page


Recommended Posts

As far as I know there isn't one that does that. They just merged 2 pages together. (added the log in to the create account page)

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Link to comment
Share on other sites

I've already tried that but couldnt get it to work. I have seen several other sites like that and found a thread on it but cant seem to find it now.

 

 

 

You could try this, it cuts out a couple of steps in the check out. Looks like they are not signing up but they are.

 

 

Open up checkout_payment.php and find:

// if the customer is not logged on, redirect them to the login page

if (!tep_session_is_registered('customer_id')) {

$navigation->set_snapshot();

tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL'));

}

 

Change it to:

// if the customer is not logged on, redirect them to the login page

if (!tep_session_is_registered('customer_id')) {

$navigation->set_snapshot();

tep_redirect(tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'));

}

 

Then:

 

In checkout_shipping.php change:

tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL'));

 

To:

tep_redirect(tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'));

 

and if you want to get rid of the "Account Created Success" window that pops up after they create their account do this:

 

In create_account.php

 

Change

tep_redirect(tep_href_link(FILENAME_CREATE_ACCOUNT_SUCCESS, '', 'SSL'));

 

to

tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));

 

this will remove the thank you message after account creation to speed up checkout. You no longer see create_account_success.php, it goes right to shipping.

 

With this process you have just removed 2 steps from the lengthy cart process, and removed the Dreaded "Become a Member" Page that scares of potential customers, and you still get them to sign in and get them to create the account.

 

Is this great or what?  :thumbsup:

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...