• Resolved litlbitl

    (@litlbitl)


    How can I translate error message that pops-up when the checkbox is unchecked?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Which error message are you referring to?

    A required interest group is missing.?

    Let me know.

    Thank you,
    Kevin.

    Thread Starter litlbitl

    (@litlbitl)

    Yes, exactly that one. Thanks!

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    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.

    Thread Starter litlbitl

    (@litlbitl)

    Excellent! Thank you very much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘translation’ is closed to new replies.