X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   changing checkout process (https://forum.x-cart.com/showthread.php?t=13373)

Hyperdelicious 04-12-2005 09:09 AM

changing checkout process
 
When a customer clicks on checkout I would like to have them sent to a page which first asks:

1. Already a member? Enter user/pass (login button)
2. Not a member? Click here to register (or why register)

I want this to be the first part of the checkout process. Then after login or register... the customer can be sent to the regular checkout page. Oh and for those who aren't psychic... i'm using vs. 4.0.13.

Any ideas?

TelaFirma 04-12-2005 03:36 PM

See if the checkout process at http://www.angelacarolpearls.com/ is what you are talking about.

Hyperdelicious 04-13-2005 05:06 AM

checkout process
 
That's partly what I'm looking for only without the cart details at the top. When a customer clicks on view cart (if they are not already logged in) I want them to be sent to a page similar to this http://www.angelacarolpearls.com/my_account.php?xid=34f9ea4f71d618db31766439d087e6a 5&.

In fact I would like to setup a simialr 'my account' page could you advise me on its setup?

gbanse 04-15-2005 10:44 AM

Quote:

Originally Posted by TelaFirma
See if the checkout process at http://www.angelacarolpearls.com/ is what you are talking about.


Yes, that would be what I'm looking to do. Could you tell me how you created that page?

Jon 04-15-2005 10:50 AM

I've streamlined the checkout process with my ezCheckout mod, which does incorporate this screen:

Screenshot:
http://www.mixtapemp3.com/temp/screenshot2.gif

Info/Purchase
http://www.websitecm.com/store/customer/product.php?productid=69

Forum Discussion:
http://forum.x-cart.com/viewtopic.php?t=12539&highlight=

sportruck 04-15-2005 01:37 PM

Here is my checkout setup:

http://www.TruckSHOP.com/ebay/checkout_screen.jpg


The first checkout step is located in customer/main/anonymous_checkout.tpl

If you want to remove the cart details, comment out or remove this section of code:

Code:

{capture name=checkout_dialog}
<FORM action="cart.php" method="POST" name="cartform">

<INPUT type="hidden" name="cart_operation" value="cart_operation">

{if $config.Appearance.show_cart_details eq "Y" or ($config.Appearance.show_cart_details eq "L" and $smarty.get.paymentid ne "" and $smarty.get.mode eq "checkout")}
{include file="customer/main/cart_details.tpl"}
{else}
{include file="customer/main/cart_contents.tpl"}
{/if}
<HR noshade size="1">

{include file="customer/main/cart_totals.tpl"}



{include file="buttons/update.tpl" href="javascript: document.cartform.submit()" js_to_href="Y"}
</FORM>
{/capture}
{include file="dialog.tpl" title="`$lng.lbl_checkout`: `$lng.lbl_step` `$checkout_step` `$lng.lbl_of` `$total_checkout_steps`" content=$smarty.capture.checkout_dialog extra="width=100%"}


To have a login box displayed next to the customer registration field, change the rest of the code in customer/main/anonymous_checkout.tpl to the following:

Code:

<TABLE>
<TR valign="top" width="30%">
<TD>
{include file="main/error_login_incorrect.tpl"}
</TD>
<TD valign="top" align="middle" width="10%">





OR
</TD>
<TD width="60%">
To create a new account, enter your information below:



{include file="customer/main/register.tpl"}
</TD>
</TR>
</TABLE>


You may need to modify some of your language files to have the login message make sense.

MythNReality 04-15-2005 05:53 PM

Thanks...
 
[quote="sportruck"]Here is my checkout setup:

That's very helpful. :lol:

gbanse 04-16-2005 05:44 AM

Spot on sportruck, that's what I was looking for as well. Thanks.

flyingsaucer 10-14-2005 10:45 AM

sportruck,

your checkout looks nice.

One quick question about the username. How did you modify it so that user does not have to enter an email address and a username.

This is the functionality I have been looking for. It seems redundant to have a seperate username field since their email address is unique.

I will appreciate it if you share how you did it.

Thanks

harrismichael 10-14-2005 11:10 AM

Quote:

Originally Posted by gbanse
Quote:

Originally Posted by TelaFirma
See if the checkout process at http://www.angelacarolpearls.com/ is what you are talking about.


Yes, that would be what I'm looking to do. Could you tell me how you created that page?



Yah .. I second this .. how do we get this functionality ??


All times are GMT -8. The time now is 02:51 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.