When attempting to register for an event, I am receiving the following error. Have no idea what to do.
An error has occurred:
First Name is a required value.
EE_SPCO_Reg_Step_Attendee_Information – _verify_critical_attendee_details_are_set_and_validate_email – 884
I have seen that error occur when there is a plugin conflict or if a caching solution is running and the Event Espresso pages have not been excluded via the cache settings:
Are you using a caching plugin like W3 total cache or WP super cache? If so, could you please exclude the Event Espresso pages as shown in the tutorial in the link above?
If you are not using a caching solution, then please try temporarily deactivating other plugins to see if the issue goes away.
I can recommend using another contact form plugin, or if you are familiar with a bit of PHP programming, you can deregister the Simple Contact forms scripts from the registration checkout page. The basic PHP function would work like this:
add_action( 'wp_enqueue_scripts', 'my_deregister_javascript', 100 );
function my_deregister_javascript() {
if ( !is_page('registration-checkout') ) {
wp_deregister_script( 'simple-contact-form-js-handle-goes-here' );
}
}
You can follow this guide for more information on how to disable specific scripts:
The support post ‘Error message at Registration Check out.’ 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.
Support forum for Event Espresso 3 and Event Espresso 4.