Working fine standalone - but does not display custom message when connected to the MailChimp addon.
Site in development, public URL not available.
Working fine standalone - but does not display custom message when connected to the MailChimp addon.
Site in development, public URL not available.
Issue resolved. MailChimp addon not at fault. User Registration addon causing the confusing error message.
Solved by the following code in functions.php :
add_filter("gform_user_registration_validation_message", "update_validation_msgs", 10, 2);
function update_validation_msgs($message, $form) {
if($message == 'The username can not be empty')
$message = 'Email is required.';
return $message;
}
Glad you were able to figure it out.