Results 1 to 10 of 10
  1. #1
    Join Date
    Jan 2010
    Posts
    182
    Plugin Contributions
    0

    Default Can I put up payment instructions to show only to international buyers using CCs?

    I came across the disclaimer with huge red letting on the old CC Offline Billing module not offered anymore due to the compliance discrepancy. Whoa!

    Needless to say I don't want to use that anymore. I am going to revert to using our already in function PayPal Standard.

    Here's the thing - I would like to put a disclaimer for international customers who will not see the CC input fields anymore (as I will be disabling that module) to direct them to use the PayPal payment with a debit/credit card, but they need to know they can do that without a PayPal account.

    I would like a message that appears above the 'Payment Method' but appears only to international customers (billing address). (Domestic customers use Authorize.net)

    Here is what I see as the code for the message, but I need it to display for international billing addresses only:

    includes/templates/yourtemplate/templates/tpl_checkout_payment_default.php

    Around Line 87 insert a message inside the PaPay <legend><div> code

    I know it will be based on zones. I have a few variations set up already for international customers only, just need the code to retrieve that one specified zone to display this message to international billing customers to direct them to use PayPal Standard.

    It's in here correct?

    $check = $db->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_AUTHORIZENET_AIM_ZONE . "' and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id");
    while (!$check->EOF) {
    if ($check->fields['zone_id'] < 1) {
    $check_flag = true;
    break;
    } elseif ($check->fields['zone_id'] == $order->billing['zone_id']) {
    $check_flag = true;
    break;


    Replace that code for a Zone ID?


    No Whammies No Whammies...

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Using PayPal Standard not CC module for international

    Won't your Authorize.net gateway provider accept international CC's??
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Jan 2010
    Posts
    182
    Plugin Contributions
    0

    Default Re: Using PayPal Standard not CC module for international

    Well, yes but there is a problem that poses with AVS - Address Verification System. We were told by Authorize.net that if we let the whole world through, then the countries that do not support AVS - which there are quite a few - could create a problem with card runners. If we are ever flagged as a "card runner site" because of some moronic card hacker, we'll lose our Authorize.net account. We figured it's a little harder with PayPal.

    Anyone else effectively using Authorize.net internationally without problems?

    Having the code for text to appear for certain zones would be pretty slick as I have two other thoughts that I could use this same thing for.

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Using PayPal Standard not CC module for international

    You can create zones wih the countries that you can safely offer/use authorizeNet and set that zone in the payment module

    Another zone with all the other countries and set the PayPalExpress module for that zone
    Zen-Venom Get Bitten

  5. #5
    Join Date
    Jan 2010
    Posts
    182
    Plugin Contributions
    0

    Default Re: Can I put up payment instructions to show only to international buyers using CCs?

    Right. We have Auth.net right now for US ony. Setting it up for all the countries that Auth.net allows with AVS would be a great option. - good point.

    PayPal Payments Pro (is that the Express checkout?) only allows 6 currencies but PayPal Standard allows 19 currencies.

    I just don't want to disallow someone out there.

  6. #6
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Can I put up payment instructions to show only to international buyers using CCs?

    Quote Originally Posted by sbbemn View Post
    PayPal Payments Pro (is that the Express checkout?)
    No.https://www.zen-cart.com/tutorials/index.php?article=28
    Quote Originally Posted by sbbemn View Post
    PayPal Payments Pro ... only allows 6 currencies but PayPal Standard allows 19 currencies.
    Correct: Payments PRO allows only 6. Express and Standard support 19+
    Quote Originally Posted by sbbemn View Post
    I just don't want to disallow someone out there.
    EC is the same as Std, just more reliable. Better to use EC.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #7
    Join Date
    Jan 2010
    Posts
    182
    Plugin Contributions
    0

    Default Re: Can I put up payment instructions to show only to international buyers using CCs?

    The main objective with PayPal Standard is the customer can pay with a debit/credit without having a PayPal account.

    From what I understand Express needs a PayPal account - am I missing something here?

  8. #8
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Can I put up payment instructions to show only to international buyers using CCs?

    Did you read the article I linked to?

    EC does not require a PayPal account ... as long as you, the merchant, have set your own PayPal account settings to allow "PayPal Account Optional". The article I mentioned explains exactly that.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #9
    Join Date
    Jan 2010
    Posts
    182
    Plugin Contributions
    0

    Default Re: Can I put up payment instructions to show only to international buyers using CCs?

    I apologize,

    I was going off of Pay Pal's site and never ran across that fact for Express.

    Well, that answers it. Summary:

    I'll go ahead and instead of using CC Offline Billing, I will use PayPal Express Checkout but assign a zone specifically for the countries that I want. The Authorize.net module will continue to run USA card holders, but I will add certain countries to that specific zone so that customers from countries that support AVS can continue to use the site like normal with Authorize.net as they been.

    Thank you for your help!

  10. #10
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Can I put up payment instructions to show only to international buyers using CCs?

    Quote Originally Posted by sbbemn View Post
    I was going off of Pay Pal's site and never ran across that fact for Express.
    It's actually a side-benefit of using Zen Cart
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 

Similar Threads

  1. v139h Where can I add some instructions for using the shopping cart??
    By Morbid_Marc in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 7 Aug 2012, 08:23 PM
  2. Limit payment options to International buyers??
    By katie.laysys in forum Addon Payment Modules
    Replies: 7
    Last Post: 20 Oct 2009, 07:49 AM
  3. Set Paypal for international payment only?
    By jordana in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 13 Mar 2009, 03:55 AM
  4. Can I add extra instructions next to individual payment options in checkout_payment?
    By albertvn in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 17 Mar 2008, 03:03 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg