![]() |
When an international customer logs in, having Paypal only
Hi all, I was wondering if there is a way to set up my xcart so that when an international customer logs in, that their only payment option is to use paypal, instead of a couple others I have listed such as Credit card, etc.
My CC processor does not allow payments from any international customers including from Canada so I would like to make only Paypal available to them. Thanks! |
Whoa, sounds like you need a new payment gateway :( To my knowledge, you can only specify payment methods via membership level, not zone. That doesn't mean it can't be done, it just means it can't be done out of the box.
|
Yes, my payment processors are very strict, and unfortunately I am signed in for 2 more years! I'm guessing there is no easy way then to allow international customers to only to be able to pay through paypal?
|
Might want to check with one of the PHP gurus (Shan, Jon, Carrie, X-Cart) and see what they would charge to customize it for you.
|
This mod is for v3.5.8 and v4.0.13 only. It should work for all versions in between, since the code if very similar, but I have only checked it on these.
I did not know if you needed to determine this based on the customer billing or shipping address. I have included code for the shipping address. Just change s_country to b_country if needed. Modify the file /skin1/customer/main/checkout.tpl: Find the following code at line 68 in v3.5.8 and line 92 in v4.0.13: Code:
{section name=payment loop=$payment_methods} and change it to: Code:
{if $userinfo ne "" and ($userinfo.s_country eq $config.Company.location_country)} That's it. This will only allow the "PayPal" payment type if the customer shipping country is not the local country based on the configuration of your current x-cart setup and allow all normal payment types if the customer's country is the local country. This is based on the same sort of logic as the shipping selector for International or Domestic shipping. Hope this helps.... |
wow, I just noticed that you replied to this thread. Thanks a lot dsparks. I will definitely try install it and let you know how it works out. :)
|
That was really easy! Thanks a lot dsparks!
If I want to add another payment option such as pay by Gift Certificates, how would I do that? Also, is there a way that I can put a note inside the box titled Payment method stating that international customers may only use Paypal as a form of payment? Thanks again! :D |
To add more payment types, you can just keep adding "or" statements to the if, like this:
Code:
{if $destination eq "L" or ($destination eq "I" and $payment_methods[payment].payment_method eq "PayPal") or Note: Make sure the code above is all on one line. It looks like the display is multi-lined but it all has to be on the same line. Yes, you can add a note inside the "Payment method" box. This is what I did: In the file skin1/customer/main/checkout.tpl change the code around line 65 from: Code:
{capture name=dialog} to this: Code:
{capture name=dialog} This text will be displayed right above the payment types. Hope this helps... |
Works great! Thanks again for all your help. :)
Last question, lol is there a way to make it so that the part that says "International customers may only use Paypal and Gift Certificates as a payment options." also only shows up when an international customer logs in? |
Yes you can, just change the code in the file /skin1/customer/main/checkout.tpl to the following:
Code:
{capture name=dialog} Note: The above is based on the shipping country. Hope this helps... |
Works perfect! Thanks a bunch dsparks! :D
|
Moving this to the Custom Mods forum...good one! :)
|
Anyone know how to get this to work for version 4.0.14? I noticed that they made a few changes in the checkout.tpl because of the addition to the new Paypal Payment gateway. Here is the coding for my checkout.tpl in v 4.0.14. Can someone edit this for me? Thanks!
Code:
{* $Id: checkout.tpl,v 1.44.2.14 2005/06/17 06:27:11 svowl Exp $ *} |
Still looking for some help on getting this to work for 4.0.14. Anyone?
|
OK For the Revised 4.0.14 mod really a no brainer.
Find skin1/customer/main/checkout.tpl Line:98 Replace this code: Code:
{section name=payment loop=$payment_methods} With This Code: Code:
{if $userinfo ne "" and ($userinfo.s_country eq $config.Company.location_country)} |
To bring this issue back to life = I have just implemented it into my site and have been trying to figure out how to turn off PayPal for US customers and ON for International.
This has worked well to make international customers use PayPal only but I dont want/need US customers using PayPal ever. What would need to be changed to remove PayPal from the L designation? Thanks in advance |
Same question here. Is there a way to leave all other payment options for international customers but exclude paypal from US customers.
|
great addy thanx :)
|
Re: When an international customer logs in, having Paypal only
Thanks a bunch guys - I was looking for just such code.
|
Re: When an international customer logs in, having Paypal only
Great mod!
Was wondering, has anyone successfully implemented this for version 4.0.18? |
Re: When an international customer logs in, having Paypal only
I did just this morning! You want one too? :)
|
Re: When an international customer logs in, having Paypal only
Didn't know if I should start a new thread or not, but my question seems very similar so I thought it'd best be put here---Is there something I can alter in checkout.tpl in my version so that checks/money orders are only offered as a payment method to U.S. based (local) customers and not offered as a payment method for international customers?
As always, thank you in advance! |
Re: When an international customer logs in, having Paypal only
The basic mod is working great, anyone have any input on how to further enhance this mod to limit the payment type by both location and membership level. For instance:
International customers that have no membership must use paypal International customers that have membership = wholesale may use paypal or purchase order. Thanks in advance. -Bill |
Re: When an international customer logs in, having Paypal only
any one got this working in 4.1.8? Thanks
|
Re: When an international customer logs in, having Paypal only
Does anyone have this correctly implemented for 4.1.9?
I have been unable to make the correct changes... |
Re: When an international customer logs in, having Paypal only
Hi!
I have a store that is on 4.019, I will pay someone to install this modification with a decent post count to install this for us at a fair price for the code edits as I can't get it perfect. If this request should be referened in the for hire section, our apologies. Thank you (please pm if interested) |
Re: When an international customer logs in, having Paypal only
Based on dsparks work I was able to get this working in 4.1.9 in the fast lane checkout.
Around line 85 in modules/Fast_Lane_Checkout/checkoutmethod2.tpl find Code:
<td valign="top" width="70%" style="padding: 0 5px;"> Code:
<td valign="top" width="70%" style="padding: 0 5px;"> Code:
<tr class="TableSubHead"{*cycle values=' class="TableSubHead", '*}{if $payment.is_cod eq "Y"} id="cod_tr{$payment.paymentid}"{/if}> Code:
<tr class="TableSubHead"{*cycle values=' class="TableSubHead", '*}{if $payment.is_cod eq "Y"} id="cod_tr{$payment.paymentid}"{/if}{if $destination eq "L" and $payment.payment_method eq "Money Order"} style='display: none;'{/if}> In this case, if the user is Canadian and the payment method is money order, then we don't display the table row. |
Re: When an international customer logs in, having Paypal only
Has anyone tried this with 4.1.11 by chance ? :D/
|
All times are GMT -8. The time now is 05:30 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.