I am setting up a wordpress site that allows a user to submit an echeck payment via authorize.net
How do I display the response text to the user in a kind manner.
Again this is a wordpress site. Thanks...
11-10-2011 08:39 PM
I'm assuming from the fact you're using Wordpress that it's a PHP site, and that you're using the PHP API? Are you using AIM for the charges? You ought to be able to print_r($response) on a test transaction and then use that to figure out what variables get returned, so you can output them to your WP template or whatever. But I'm not sure if you're having problems figuring out the API, or problems figuring out WP?
11-12-2011 05:35 PM
I created a plugin that takes care of all this for you.
www.danielwatrous.com/authorizenet-for-wordpress
Otherwise you'll just have to parse the result and have create some markup. In wordpress you can use a plugin or a shortcode for that.
11-17-2011 08:40 AM