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.
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.
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 Support
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.
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.
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 Support
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.
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:
that seems to work for me. i tested on a base157 install as well as on a customized 157a site.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'
);
}
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.
Bookmarks