• Resolved wordmarcel

    (@wordmarcel)


    Hello,

    I set the default localisation for the address field in Mailchimp to ‘Netherlands’ which shows the filed labels in dutch. However when I sync the for I made, the labels for the address fields still appear in english. What can I do about that?

    Greetings,
    Marcel

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

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

    (@liljimmi)

    🏳️‍🌈 YIKES, Inc. Co-Owner

    Hello @wordmarcel

    Here is a guide to translating labels, placeholder text and everything else for your forms: https://yikesplugins.com/the-ultimate-guide-to-translating-mailchimp-forms-on-wordpress-sites/

    Please let me know if you need more information.

    Stay safe!
    -Tracy

    Thread Starter wordmarcel

    (@wordmarcel)

    Hello,

    I found those.Unfortunately this does not work for the address field, since it does not allow custom placeholder text since it takes the strings directly from mailchimp!

    Plugin address field notice

    Mailchimp address image

    • This reply was modified 6 years, 2 months ago by wordmarcel.
    Thread Starter wordmarcel

    (@wordmarcel)

    Hello,

    I was wondering if you have already been able to check this issue.

    Greetings,
    Marcel

    Plugin Contributor Freddie

    (@fmixell)

    @wordmarcel,

    You’re correct the placeholder for the address field is coming directly from MailChimp.

    As a workaround for now you could use a filter to change the placeholder text.

    add_filter( 'yikes-mailchimp-address-addr1-placeholder', function( $placeholder ) {
      // Use functions from whatever translation plugin your using to determine current language.
    
      // Example lets say the language is French.
        $lang = 'french';
    
      if ( $lang === 'french' ) {
        return 'Adresse';
      }
    
      return $placeholder;
    } );

    If you let me know what you’re using for translation I can fill in the gaps a little better.

    Cheers,
    Freddie

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Translation address field placeholder’ is closed to new replies.