[Plugin: MailChimp Widget] Widget titles and translation
-
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;
https://www.ads-software.com/extend/plugins/mailchimp-widget/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: MailChimp Widget] Widget titles and translation’ is closed to new replies.