X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Third Party Add-Ons for X-Cart 4 (https://forum.x-cart.com/forumdisplay.php?f=45)
-   -   Easy Checkout Mod for X-Cart 3.5.x and 4.0.x (https://forum.x-cart.com/showthread.php?t=9085)

Jon 10-01-2004 08:39 PM

Heh heh, no worries. I tried to minimize the changes as much as possible, so I don't think compatibility with upgrades will be much of an issue.

adpboss 10-02-2004 09:21 PM

Jon,

When I go to the MAKE PAYMENT Screen, my buttons at the top are not updating. It stays on METHOD rather than moving to payment.

V4.0.4.

Any suggestions?

Jon 10-02-2004 10:03 PM

Likely a step in the install instructions were missed, likely the assigning of a variable. Make sure it was all installed correctly. If you'd like to PM me login details I'll have a look.

adpboss 10-02-2004 10:08 PM

I'll go through it again. I only deviated from the custom install in one spot, if I still have problems tomorrow, I'll PM what that deviation was and maybe you can tell from that.

Thanks.

Jon 10-03-2004 10:44 AM

It likely has to do with:

Code:

$smarty->assign("paymentid",$paymentid);

Make sure that is in the correct spot.

adpboss 10-03-2004 01:33 PM

That was it. Thanks.

adpboss 10-03-2004 04:36 PM

I just caught it now, but looking at the screen samples in the first post of this thread and confirmed by checking out in my store, order totals are not shown to the customer after login.

For those of you with realtime shipping and/or taxes, you may want to consider adding this into the templates. It's never good to have a customer hitting the payment submission screen without seeing an order total with shipping and taxes.

I will post back here or update Jon when I get the chance to look at this.

Jon 10-03-2004 09:36 PM

^ Yeah your right. Thanks for catching this. I'll have a solution coded and posted here asap tomorrow.

Jon 10-04-2004 07:46 AM

Here's the fix for people using realtime shipping. It will include the cart contents review, and shipping price, after login on the payment selection page.

I don't have a realtime shipping account, so please let me know if it works well and/or what improvements can be made if any.

Code for 4.0

Open /skin1/customer/main/checkout.tpl (after already modded with X-Easy Checkout)

Find:

Code:

{elseif $payment_methods ne ""}

After add:

Code:

{if $config.Shipping.realtime_shipping eq "Y"}

{capture name=checkout_dialog}

<FORM action="cart.php" method="POST" name="cartform">

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

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

<HR noshade size="1">

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




{if $js_enabled}
{include file="buttons/update.tpl" href="javascript: document.cartform.submit()" js_to_href="Y"}
{else}
{include file="submit_wo_js.tpl" value=$lng.lbl_update}
{/if}

</FORM>

{/capture}
{include file="dialog.tpl" title=$lng.lbl_shipping content=$smarty.capture.checkout_dialog extra="width=100%"}

{/if}


Code for 3.5.x

Find:

Code:

{elseif $payment_methods ne ""}

After add:

Code:

{if $config.Shipping.realtime_shipping eq "Y"}
{capture name=checkout_dialog}
<form action="cart.php" method=post name=cartform>

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

<HR noshade size=1>

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



{if $js_enabled}
{include file="buttons/update.tpl"}
{else}
{include file="submit_wo_js.tpl" value=$lng.lbl_update}
{/if}
</form>
{/capture}
{include file="dialog.tpl" title=$lng.lbl_shipping content=$smarty.capture.checkout_dialog extra="width=100%"}

{/if}


adpboss 10-04-2004 08:29 AM

Looks great on 4.0.

Thanks Jon.

Jon 10-04-2004 11:24 PM

I've updated the product with the fix and created a new distributive, including both the 4.0 and 3.5 versions in the same download. Contact me by PM with your email and order# if you'd like me to email it to you.

savage 10-06-2004 04:38 PM

Where' s my mod?
 
:evil:

I ordered this mod with installation and I've not heard one word from this person or his website. Not one email -- nothing.. not even a reciept from the cart. I did how ever get CHARGED by my credit card company.

I'm getting ready to reverse the charges on my credit card.



hiddenmysteries.com

EnriqueHavoc 10-06-2004 04:45 PM

are you sure that your email account didnt automatically send the email to your junk filter? That happened to mine

Jon 10-06-2004 06:34 PM

Re: Where' s my mod?
 
Quote:

Originally Posted by savage
:evil:

I ordered this mod with installation and I've not heard one word from this person or his website. Not one email -- nothing.. not even a reciept from the cart. I did how ever get CHARGED by my credit card company.

I'm getting ready to reverse the charges on my credit card.



hiddenmysteries.com


I'm assuming my email is being sent to your spam filter, as download links are sent immediately, and I have e-mailed you requesting the login/password needed to perform installation. I've since e-mailed you again and also left a message on your answering machine with my direct phone #.

adpboss 10-06-2004 07:12 PM

Spam filters and short tempered customers are the bane of us all.

Jon 10-12-2004 05:58 PM

Re: Where' s my mod?
 
Quote:

Originally Posted by savage
:evil:

I ordered this mod with installation and I've not heard one word from this person or his website. Not one email -- nothing.. not even a reciept from the cart. I did how ever get CHARGED by my credit card company.

I'm getting ready to reverse the charges on my credit card.



hiddenmysteries.com


I don't know if you've gotten my other emails in response so I'm posting here as well. Your installation is complete.

adpboss 10-12-2004 06:30 PM

Jon,

When you get a sec, can you look at the 4.0.5 login.php.

For some reason I can't login to admin now....

If you need me to shoot you a few bucks via PP, just PM me.

Thanks.

Jon 10-12-2004 06:45 PM

The code changed in login.php applies to:

Code:

if ($login_type == "C" || $login_type == "B") {

Which is the partner or customer login. The admin login is executed before this in the file, and should be be effected. May be a problem with the upgrade. If you PM me ftp/admin details I'll have a look at your situation in particular.

adpboss 10-12-2004 06:47 PM

I'll try to reinstall the mod on a fresh 405 file and if that still has issues, I will PM. Thanks for the fast response.

adpboss 10-12-2004 07:00 PM

YGPM in 2 minutes. Customer login doesnt work either.

I tried to figure it out, but I'm not that clever.

Jon 10-13-2004 07:47 AM

^ Looking now.

For those using 4.0.x (3.5 was posted earlier) who wanted to tidy up the "Please Wait..." page while the person is paying with paypal, you can do so like so:

open payment/ps_paypal.php

Find:

Code:

<table width=100% height=100%>
<tr><td align=center valign=middle>Please wait while connecting to PayPal payment gateway...</td></tr>
</table>


With:

Code:

<table width="100%" height="100%" ><tr><td align="center" valign="middle">
<font face="Arial, Helvetica, sans-serif" size="+1" color="#000000">Please Wait ...

 

We are transferring you to the secure Paypal server.
</font></td></tr></table>


Jon 10-13-2004 08:00 AM

Quote:

Originally Posted by adpboss
Jon,
When you get a sec, can you look at the 4.0.5 login.php.
For some reason I can't login to admin now....


You had an extra closing bracket "}" in the code you implemented there. It's working now :thumb:

adpboss 10-13-2004 08:34 AM

THANKS.

Everyone buy this mod from Jon, because he has been a great man about supporting it.

zardos 10-13-2004 09:42 AM

If only x-cart would have more people like "Jon" on there side, his support is second to none, "Great work" everyone keep buying this mod.

Jon 10-13-2004 10:17 AM

Thanks guys :)

I am considering creating a "testimonials" mod if it hasn't been done already (haven't had time to look already) :D

I'd appreciate feedback/testimonials I can use for the checkout mod.

cotc2001 10-13-2004 10:32 AM

yes a testimonial mod does already exist on cartmods.com BUT I would not recommend buying anything from them.

see my thread on http://forum.x-cart.com/viewtopic.php?t=13536&highlight=

rjcbear 10-13-2004 11:33 AM

Quote:

Originally Posted by zardos
If only x-cart would have more people like "Jon" on there side, his support is second to none, "Great work" everyone keep buying this mod.


I think Jon needs to keep creating some mods since my sales had increase since I got his checkout mod.

Great work Jon.

Kind regards,
Ricky

theoverpass 10-13-2004 01:58 PM

Care to tell us by how much your sales have increased?

I'm on a bit of a tight budget but if need be I'll get this mod.

adpboss 10-13-2004 02:07 PM

Things like checkout mods, product listing mods or marketing mods are no brainers.

How many sales would it take to get the value back? How many sales will you lose to a confusing checkout?

theoverpass 10-13-2004 02:46 PM

Well thats what I'm wondering (how many sales I'm losing) so if any one can give me (even a rough) estimate of how much thone mods have helped, it would be greatly apreciated

Also I've herd of the marketing mod but what would be the recomended product listings mod?

adpboss 10-13-2004 02:49 PM

The only way for you to find out is to try the mod and compare your conversion stats for before and after.

Other stores may provide an approximation, but with different selling environments, products and prices I don't think that info will be much use to you. There are simply too many variables.

Jon 10-13-2004 03:02 PM

These are the types of testimonials I'm looking for :)

N2Performance.com for example has conversion monitoring software installed and said their sales have "doubled."

theoverpass 10-13-2004 03:06 PM

Hmm.. I guess it can't hurt to try it would really only take a few sales extra to make my money back and christmas is coming.

Jon 10-13-2004 03:19 PM

^ Let me know if my checkout process encourages you to buy once you start the process ;)

theoverpass 10-13-2004 04:08 PM

Haha will do,

One quck question is there any way to get rid of this step:
http://www.mixtapemp3.com/images/xeasycheckout4/4.gif its always been buging me, I'd rather they just fill out thier details choose a method and then do sent to (in my case) 2checkout or paypal.

Or is it possible to make it even fater letting them just select payment method and pay after they hit checkout rather then fill out thier details. (details would then be collected via payment processor)

Thanks

theoverpass 10-13-2004 04:17 PM

...Just bought it, can't wait to set it up and see how it goes.

Jon 10-13-2004 06:06 PM

Quote:

Originally Posted by theoverpass
Haha will do,

One quck question is there any way to get rid of this step:
http://www.mixtapemp3.com/images/xeasycheckout4/4.gif its always been buging me, I'd rather they just fill out thier details choose a method and then do sent to (in my case) 2checkout or paypal.

Or is it possible to make it even fater letting them just select payment method and pay after they hit checkout rather then fill out thier details. (details would then be collected via payment processor)

Thanks


There's a way to do everything, it's just a matter of amount of how difficult it is and how much it may cost :D

If you wanted customer to skip that step your store could be custom coded to have that radio selection/submit work as the form submission on the payment page, which would then direct them to where they need to go, but it would make it diffficult to offer other payment methods, and you'd probably have to code backwards if you chose to offer alternate payment methods in the future.

If your interested in having custom work done PM me for rates and if you have MSN Messenger include your msn so we can talk if clarification is needed.

Also, let me know how you find the install/end result.

theoverpass 10-13-2004 08:54 PM

My cart... its beatifull

It was an easy and painless install

Thanks Jon :)

Jon 10-13-2004 10:01 PM

Glad to help :D

Mind PM'ing me a link to have a look?

Jon 10-14-2004 02:30 PM

I'm working on a mod to work with this mod.

It will add a step to the checkout page titled "Recommends" allowing the user to 1 click add products to their cart, based on what is in their cart already.

If you want any input on how this mod is created, I'm happy to hear it.


All times are GMT -8. The time now is 12:07 PM.

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