Page 7 of 14 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 131
  1. #61
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by carlwhat View Post
    i am working on a new release of this most excellent, IMO (inherently biased), payment module. it should address all bugs documented by you and verified by me. including the verified bugs associated with guest checkout.

    thanks for pointing them out.

    best.
    Glad to hear that! I'll get it installed and tested as soon as it's available.

  2. #62
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    v 2.2.0 now submitted for review.

    many bug fixes as well as now having the ability to have multiple authorizations per order! all configurable.

    problems associated with guest checkout should now be addressed.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  3. #63
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    v 2.2.0 now available.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  4. #64
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by carlwhat View Post
    v 2.2.0 now available.
    Thank you! I'll report back on any issues.

    Here's one typo to fix. Line 32 from \includes\languages\english\card_update.php

    define('CARD_UPDATE_OK', 'Succesfully updated information.');
    correct to:
    define('CARD_UPDATE_OK', 'Successfully updated information.');

  5. #65
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    v 2.2.1 is now available.

    in addition to having multiple authorizations per order, admins can use any customer card on file for additional authorizations.

    i have addressed all reported and verified bugs. including new ones found by me!

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  6. #66
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,695
    Plugin Contributions
    123

    Default Re: Authorize.net API with Card on File transactions support thread...

    Possibly useful change to the docs/index.html file: it currently says:

    Go to Admin -> Modules -> Payment and you will see 2 new payment modules
    PLEASE PLEASE PLEASE, even if you already have an authorize.net account, create a new one using the link here.

    I assumed here was a link so I tried clicking it, and then tried scanning the page to see where the link was.
    Maybe instead:

    Go to Admin -> Modules -> Payment and you will see 2 new payment modules.
    Start by clicking on New Credit Card Authorize.net (CIM). You will see a link under the Install Module button that says
    Click Here to Sign Up for a NEW Merchant Account.
    PLEASE PLEASE PLEASE, even if you already have an authorize.net account, create a new one using this link.

    ... or something like that.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  7. #67
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by swguy View Post
    Possibly useful change to the docs/index.html file: it currently says:

    Go to Admin -> Modules -> Payment and you will see 2 new payment modules
    PLEASE PLEASE PLEASE, even if you already have an authorize.net account, create a new one using the link here.

    I assumed here was a link so I tried clicking it, and then tried scanning the page to see where the link was.
    Maybe instead:

    Go to Admin -> Modules -> Payment and you will see 2 new payment modules.
    Start by clicking on New Credit Card Authorize.net (CIM). You will see a link under the Install Module button that says
    Click Here to Sign Up for a NEW Merchant Account.
    PLEASE PLEASE PLEASE, even if you already have an authorize.net account, create a new one using this link.

    ... or something like that.
    i will take a look. thanks for the input.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #68
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    v 2.2.2 is now available.

    the key fix on this version, is the order status only gets changed after capture of the funds. if you have the authorization type set to authorization+capture, you will not notice any difference. if, on the other hand, you are set to authorize only; the order status will only get updated after capture of the funds on the admin side.

    there are a few other bug fixes/improvements made behind the scenes.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  9. #69
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,695
    Plugin Contributions
    123

    Default Re: Authorize.net API with Card on File transactions support thread...

    I'd like the Keep Card on File checkbox to default to unchecked. I would have thought changing the call to zen_draw_checkbox_field in includes/modules/payment/authorizenet_cim.php line 200 would do it, but it seems stuck on checked. Any thoughts?
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #70
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by swguy View Post
    I'd like the Keep Card on File checkbox to default to unchecked. I would have thought changing the call to zen_draw_checkbox_field in includes/modules/payment/authorizenet_cim.php line 200 would do it, but it seems stuck on checked. Any thoughts?
    hi @swguy,
    yeah, that's what i would think as well. that code looks wrong there. not sure how it got that way.... have you tried:

    PHP Code:
    if (!zen_in_guest_checkout()) {
                    
    $selection['fields'][] = array(
                        
    'title' => 'Keep Card on File',
                        
    'field' => zen_draw_checkbox_field('authorizenet_cim_save'''false),
        
    //                    '' . ' id="' . $this->code . '-save"' . $onFocus),
                        
    'tag' => $this->code '-save'
                    
    );
                } 
    that seems to work for me. i tested on a base157 install as well as on a customized 157a site.

    it does not look like that other stuff is doing whatever it was i intended it to do there.

    i will fix that in the next release. thanks for pointing it out!

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 
Page 7 of 14 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. v155 Saving Credit Card Info with Authorize.Net
    By magneto in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 25 Jan 2021, 10:28 PM
  2. v154 Having Issues With Duplicate Transactions in Authorize.net
    By CSGODeimos in forum General Questions
    Replies: 1
    Last Post: 27 Sep 2017, 02:53 PM
  3. v151 Duplicate transactions authorize.net AIM
    By badarac in forum Built-in Shipping and Payment Modules
    Replies: 9
    Last Post: 9 Aug 2016, 03:52 PM
  4. Replies: 1
    Last Post: 31 May 2006, 05:06 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR