Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

Easy Checkout Mod for X-Cart 3.5.x and 4.0.x

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #461  
Old 10-19-2005, 03:07 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

Yes, later tonight I'll update the screenshots which will show you how it works. It's just slightly different.
Reply With Quote
  #462  
Old 10-19-2005, 04:56 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

Most of the changes are for ease of installation, and a summary has been added to the payment methods page to display shipping and gift certificates.

There's a new set of screenshots available at:
http://www.websitecm.com/xcart-easy-checkout.html

Here's the Payment Methods page:
http://www.websitecm.com/images/xeasycheckout4/3.gif
Reply With Quote
  #463  
Old 10-24-2005, 10:16 AM
 
taltos1 taltos1 is offline
 

Senior Member
  
Join Date: Mar 2005
Location: USA
Posts: 160
 

Default

I am having a small problem I was hoping you could help me with. The thin lines that are around the box are all fine but the the upper right. To the right of the tabs the line is gone but this only happens in IE. In firefox it does not? any insight would be awesome!!
THanks
__________________
X-Cart Gold Version 4.0.18
EWDHosting.com is my Host
Unix Servers
Reply With Quote
  #464  
Old 11-11-2005, 02:14 PM
 
jsa jsa is offline
 

Senior Member
  
Join Date: Oct 2005
Posts: 197
 

Default

I see some people running what appears to be this mod, with some of the steps stripped out.

How do they streamline it like that?
__________________
Building: X-Cart GoldPlus 4.6.1
Old cart:
XC 4.0.17 FComp-RMA-AOM-OFF-Affil
BCSE: Referral Pts-Surveys-BatchUp-OrderEZ- Reviews-RSS
FT: Glossary-OptCopt-AdvSrch-Recently Viewed-Also Bought
CM: eZConversion
XP: SalesRecovery, MultCrncy
Reply With Quote
  #465  
Old 11-11-2005, 03:15 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

What steps appear stripped?
Reply With Quote
  #466  
Old 12-21-2005, 02:36 PM
 
Triangle Triangle is offline
 

Member
  
Join Date: Nov 2004
Posts: 21
 

Default

I just installed the Easy Checkout mod successfully. Looking ofrward to a smoother checkout for my customers. I'm not sure if this is by default or if I did something wrong, but there a few things I need to fix.

1. There is not a border around the customer login and register areas. It is confusing because there is no distinction between them. How can I add a border or change the bgcolor just for those 2 areas? Here is a screenshot.

http://www.jiujitsugear.com/images/junk/login1.gif

2. On the screenshot you can see it says some form of "Login" four times on the left. Is this by default or did I screw something up? Seems excessive. How can I change that? (I do like the way websitecm.com has theirs set up!)

3. Something hosed my Submit button at the bottom of the Register section, on the Method page, and Payment "Submit Order." I guess its pulling from another style by default, but I am too dumb to figure it out. After the mod install it looks like this:

http://www.jiujitsugear.com/images/junk/submit.gif

Should be like this: [img]http://www.jiujitsugear.com/images/junk/go.gif[/img]

5. I edited home_checkout.tpl to include some text as quidance for that first screenshot above. It is carrying over to the top of the Payment page, too. What do I need to do differently so it only shows up on the Login page? Right now its just after

Thanks in advance for putting up with my questions!
__________________
4.0.18
Reply With Quote
  #467  
Old 12-21-2005, 03:12 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

1) Looks like your menu.tpl and dialog.tpl files are not using boxes, so there are no boxes here. Else there is some sort of customization that needs to be carried from home.tpl to home_checkout.tpl

2) You can edit your skin1/customer/main/anonymous_checkout.tpl to modify this page.

3) There's likely a color change missing in skin1/skin1.css

4) There was no #4

5) Use {if $mode eq "checkout" AND $login eq ""}Show Text{/if}
Reply With Quote
  #468  
Old 12-21-2005, 06:03 PM
 
Triangle Triangle is offline
 

Member
  
Join Date: Nov 2004
Posts: 21
 

Default

Thanks!

1. Changed the dialog border in dialog.tpl.

2. Edited anonymous_checkout.tpl and changed some label names for a short-term fix.

3. Got the button problem fixed. Yup, skin1.css issue.

4. I put the text in anonymous_checkout.tpl and that worked without needing that if/then statement.

Took me a while, but I got it looking better. Thanks again, Jon! Now on to Upsell and Recommend!
__________________
4.0.18
Reply With Quote
  #469  
Old 06-19-2006, 08:51 AM
 
taltos1 taltos1 is offline
 

Senior Member
  
Join Date: Mar 2005
Location: USA
Posts: 160
 

Default

Hello! I have a question.

I am using this excellent mod and when you "modify" your address it goes back to the standard X-cart page to edit the info, and I think it is a bit jarring as the EZ checkout mod has a very distinct visual layout.

How can I get it so that when they click on "modify" address in EZcheckout only, they stay in that area, but I still have the standard Xcart page if a customer is looking at their profile etc..

Thanks a lot.
__________________
X-Cart Gold Version 4.0.18
EWDHosting.com is my Host
Unix Servers
Reply With Quote
  #470  
Old 06-20-2006, 12:09 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

Quote:
Originally Posted by taltos1
Hello! I have a question.
How can I get it so that when they click on "modify" address in EZcheckout only, they stay in that area, but I still have the standard Xcart page if a customer is looking at their profile etc..

Try this:

Open register.php

FIND:

Code:
func_display("customer/home.tpl",$smarty);

Replace with:

Code:
if ($action == "cart") { func_display("customer/home_checkout.tpl",$smarty); } else { func_display("customer/home.tpl",$smarty); }
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 03:40 AM.

   

 
X-Cart forums © 2001-2020