Re: Authorize.net API with Card on File transactions support thread...
Quote:
Originally Posted by
carlwhat
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.
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.
Re: Authorize.net API with Card on File transactions support thread...
Re: Authorize.net API with Card on File transactions support thread...
Quote:
Originally Posted by
carlwhat
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.');
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.
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.
Re: Authorize.net API with Card on File transactions support thread...
Quote:
Originally Posted by
swguy
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.
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.
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?
Re: Authorize.net API with Card on File transactions support thread...
Quote:
Originally Posted by
swguy
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.