Support

Home Forums Event Espresso Premium Authorize Accept.net : Finger Print value is not valid –

Authorize Accept.net : Finger Print value is not valid –

Posted: August 1, 2018 at 10:02 am


asisnyc

August 1, 2018 at 10:02 am

Hi –

This question is in response to this message. https://eventespresso.com/topic/what-happened-to-my-authorize-nrt-accept-payment-method/.

We would like to capture this response code(E00096) from Authorize.net and change the text output from “Finger Print Value is not valid” to “Credit Card Authorization Failed”. Any ideas on how to accomplish?

Thanks in advance.


Josh

  • Support Staff

August 1, 2018 at 11:02 am

Hi,

This isn’t recommended, but you can filter anything that gets filtered through the WordPress the_content filter to accomplish this.

e.g.

function my_replace_text_example($text){
	$replace = array(
		// 'WORD TO REPLACE' => 'REPLACE WORD WITH THIS'
		'Finger Print Value is not valid' => 'Credit Card Authorization Failed',
	);
	$text = str_replace(array_keys($replace), $replace, $text);
	return $text;
}
add_filter('the_content', 'my_replace_text_example', 11);

You can add the above to a functions plugin or into your WordPress child theme’s functions.php file.


asisnyc

August 1, 2018 at 1:08 pm

Hi Josh –

Thank you. Can you tell my why you don’t recommend this?

Thanks again.
Terri


Josh

  • Support Staff

August 1, 2018 at 1:40 pm

Because the E00096 Finger Print not valid is not a credit card authorization failure. It’d be better to fix the error rather than re-label it.


asisnyc

August 1, 2018 at 1:55 pm

Thank you again for your reply and I do understand what your saying.

The support post ‘Authorize Accept.net : Finger Print value is not valid –’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso