Dean10767
Forum Replies Created
-
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Need custom programmingSome thoughts..
Ability to change the graphic for the Credit Cards(i did mine in back end). Because if you are only taking Visa Master the graphic has all the cards listed and is misleading. Or have a separate graphic per card and add them dynamically..
The auth for .01 is a good idea I’m sure many merchants haven’t thought of that.
Response Codes from Authorize.net some where in email that you receive. Some handle via emails then logging into wordpress etc..
Avs: Y
Code: 2xxxx
Ref: 7xxxxxxxxx
Msg: This transaction has been approved.
Msg Code: 1
Msg Sub Code: 1
Hash: 68xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
CCV Msg: M
Order ID: 1xxxxxWhat we look for is Y 1 1 M (Avs: Y, Msg Code: 1, Msg Sub Code: 1
CCV Msg: M) That means everything matched perfectly. We just charge other codes show what is wrong like zip code or address etc etc. This data very useful.Thanks!
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Need custom programmingYour plugin by default seems to use the server IP to communicate. With authorize.net we are using the fraud detection suite. This module here: Authorized AIM IP Addresses. Which lets you specify which ip addresses can send transactions. The “Authorize.Net CIM Woo themes” for some reason used the customers IP.
After many emails back and forth with them, they didn’t understand what I was talking about and/or the support guy didn’t know enough to even have an idea.
I hard coded the .01 in:
$sale = new AuthorizeNetAIM;
$sale->amount = .01;;Reason for the .01 it checks/verifies all relevant data with card/customer but doesn’t put a hold for full amount if by chance you don’t have it in stock. .01 hold a customer doesn’t get mad about, $500 hold customer will get very mad sometimes takes a couple days to release.
Thank for plugin, i will donate to your donation once a week or so has passed making sure all is well. I really like your plugin and appreciate your time and effort, thanks!
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Need custom programmingIm now using this plugin, I was using the Authorize.Net CIM Woo themes, but it had issues.
Uses client IP as IP its communicating with Authorize.net, yours doesn’t uses server.
Thanks
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Need custom programmingSorry already fixed thanks!