Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2008
    Location
    NW Indiana
    Posts
    72
    Plugin Contributions
    0

    Default Authorize only on orders over XX amount: LinkPoint

    Hi,
    When a transaction is proccessed via Credit Card I want to have an Immediate Charge for orders under $250.
    If over $250 I want to just Authorize it and process it later after investigation.

    I was wondering if this would work and what other files would need to be modified in order to only Authorize CC orders over $250?

    In /includes/modules/payment/linkpoint_appi.php on line 402 where it says:
    $myorder["ordertype"] = (MODULE_PAYMENT_LINKPOINT_API_AUTHORIZATION_MODE == 'Authorize Only' ? 'PREAUTH': 'SALE');

    Add just below it:

    if ($chargetotal > 250){
    $myorder["ordertype"] = 'PREAUTH';
    }


    I had a fraudulent transaction for $3100 that occured 5 minutes before Linkpoints auto batch and I was unable to void it. It got through and it took me 3 weeks to clear it up and get my nearly $300 in fees back after I had to make a return as opposed to a void.

    Any thoughts or suggestions are appreciated.

    Thanks,
    Ken

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

    Default Re: Authorize only on orders over XX amount: LinkPoint

    You could try that.

    However, you'll need to use $myorder["chargetotal"] instead of $chargetotal

    You'll have to do the captures of those authorizations on the linkpoint terminal, not in your Zen Cart, since the options will not show in Zen Cart if the module itself is set to normally do a full charge.
    .

    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. Adding Free Item to Orders Over Certain Amount
    By Psykryph in forum General Questions
    Replies: 1
    Last Post: 2 Dec 2011, 07:39 AM
  2. Is there a way to stop downloads on orders over a certain amount?
    By joannem in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 29 Jul 2009, 03:10 PM
  3. Is this possible? Disabling downloads on orders over a certain total amount only...
    By DigitalScrapDesigns in forum Managing Customers and Orders
    Replies: 3
    Last Post: 1 Dec 2008, 12:41 AM
  4. Taxes only apply to orders over a certain amount??
    By apemusic in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 7
    Last Post: 30 Jan 2008, 11:41 PM

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