Which error message are you referring to?
A required interest group is missing.?
Let me know.
Thank you,
Kevin.
Yes, exactly that one. Thanks!
Hello,
You’ll need to use a filter to translate this one. Here is the function:
add_filter( 'yikes-mailchimp-required-interest-group-missing', 'customize_interest_group_missing_message', 10, 3 );
function customize_interest_group_missing_message( $message, $form_id, $missing_fields ) {
return 'my translated message';
}
Replace my translated message with your translated message 🙂
Let me know if you need any help applying this code.
Thank you,
Kevin.
Excellent! Thank you very much!