-
AuthorPosts
-
December 9, 2015 at 3:07 pm #549734
Hi there,
we are using the MailChimp Newsletter sign-up form in the footer of our enfold website.
Unfortunately the placeholders in the input fields are in English, for example: Email Address, First Name.Is there a way to use different words like in German instead of English?
Best regards,
Niemitz
December 9, 2015 at 3:30 pm #549761Hi again,
we also need that for the message of this notice:
“This email address is already subscribed, thank you!”
December 9, 2015 at 4:04 pm #549806Hi!
try to use a plugin like loco translate or poedit and let us know if this works for you or not.
Regards,
AndyDecember 10, 2015 at 10:13 am #550256Hi Andy,
thanks for your answer!
We have installed the loco translate module but we cannot find those strings, which means there is no way we can translate them.
If we use the MailChimp Newsletter plugin when designing a page we can choose the name of the labels.
It would be nice if that data could be used for widget in our footer.Do you have any other idea for this problem?
Best regards,
NiemitzDecember 13, 2015 at 6:17 am #551555Hey!
You can modify or translate the messages by using the theme’s “avf_mailchimp_messages” filter. Add something like this in the functions.php file:
add_filter('avf_mailchimp_messages', 'avf_mailchimp_messages_mod', 10, 1); function avf_mailchimp_messages_mod($message) { $message['email'] = __('Please provide a valid email address.', 'avia_framework'); $message['all'] =__('Please fill in all required fields.', 'avia_framework'); $message['already'] =__('This email address is already subscribed, thank you!', 'avia_framework'); $message['general'] =__('We are very sorry but something went wrong. Please try again later.', 'avia_framework'); $message['invalid_field'] =__('Please make sure that your fields are filled in correctly', 'avia_framework'); return $message; }
Adjust the text.
Cheers!
IsmaelJuly 8, 2016 at 9:36 am #658311Hi there,
sorry for the long time it took me to reply.
I have found out that the language that is used depends on the settings in the mailchimp account.
Anyways, thanks a lot for taking your time and helping out!! :)
BR, Niemitz
July 11, 2016 at 6:49 am #659091Hi,
Glad you found a workaround, To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
Vinay -
AuthorPosts
- The topic ‘MailChimp Newsletter Widget’ is closed to new replies.