• If you are having a problem with the widget title not being translated with a multilingual website (perhaps with WPML), it is due to a missing filter in the widget output.

    In lib/ns_mailchimp_widget.class.php, replace line 273:

    echo $before_widget . $before_title . $instance['title'] . $after_title;

    with:

    echo $before_widget . $before_title . apply_filters('widget_title', $instance['title']) . $after_title;

    http://wordpress.org/extend/plugins/mailchimp-widget/

Viewing 1 replies (of 1 total)
  • hello,
    thanks very much for your help.
    but my problem with translations persists. i’m using qTranslate plugin as a language switcher.
    and the problem i’m getting is that the input fields labels like First Name, Last Name, all the success, failure messages always show in English only. do you have an idea how ti fix that.
    Any help will be really appreciated.
    thanks a lot
    bilyana

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: MailChimp Widget] Widget titles and translation’ is closed to new replies.