Support

Home Forums Event Espresso Premium Error after activating Authorize.net Accept

Error after activating Authorize.net Accept

Posted: August 16, 2019 at 2:11 pm


Lisa

August 16, 2019 at 2:11 pm

I’ve been successfully using Authorize.net AIM but it’s now deprecated so I’ve installed Authorize.net Accept plugin and deactivated the AIM option.

Suddenly, I’m getting ‘An error has occurred:
The billing form was not submitted or something prevented its submission.’ when I try to send a payment through for my event.

After testing plugins, this is the culprit: jQuery Updater. It updates WordPress jQuery to the latest stable version.

Without that jQuery updater plugin, I don’t pass my PCI scans due to WordPress ancient jQuery version.

Any suggestions on how to make Authorize.net Accept plugin work with a newer version of jQuery? As I said, I wasn’t getting this error with Authorize.net AIM.


Josh

  • Support Staff

August 16, 2019 at 2:52 pm

Actually what’s going on with that is there’s a mistake in the very latest version of jQuery Updater, that’s a breaking change. Other reports about this breaking change include this one:
https://wordpress.org/support/topic/jquery-migrate-not-enqueued-breaking-site/

In the previous version of jQuery updater, it enqueued jQuery migrate, you’ll see on line 34:

https://plugins.trac.wordpress.org/browser/jquery-updater/tags/3.4.1/jquery-updater.php#L34

You’ll see how this changed in the next version:

https://plugins.trac.wordpress.org/browser/jquery-updater/tags/3.4.1.1/jquery-updater.php#L33

So you could either change the code back (so it uses wp_enqueue_script() instead)

or

you could add this code to your theme’s functions.php file:

add_action('wp_enqueue_scripts',function(){
	wp_enqueue_script('jquery-migrate');
});

or add the above code to a functions plugin, and activate the plugin.


Lisa

August 16, 2019 at 2:54 pm

Wow, what quick detective work, Josh! Thanks, I’ll try one of your solutions.

The support post ‘Error after activating Authorize.net Accept’ 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