cvilela
Member
Posted 4 months ago #
Hi,
I installed display-widget v1.22 but it does not work with WordPress 3.5 and WPML (v.2.6.3).
Everything looks fin, but when I Show on checked for specific pages, my custom menus don't display. They are displayed only when Hide on checked is checked, and no pages are checked.
I also use the widget_logic plugin to select french/english with:
ICL_LANGUAGE_CODE == 'fr' or ICL_LANGUAGE_CODE == 'en'
Changed display-widget from 1.22 to 1.21, now it works
Christian
http://wordpress.org/extend/plugins/display-widgets/
Ciro Urdaneta
Member
Posted 4 months ago #
Yes it's a pity, we need an upgrade ASAP. Meanwhile you can avoid update notices adding this code in your functions plugin
// disable display-widget updates
function filter_plugin_updates( $value ) {
unset( $value->response['display-widgets/display-widgets.php'] );
return $value;
}
cvilela
Member
Posted 3 months ago #
Nope, but 1.2.4 works with WP 3.5.1 and WPML 2.6.3, just tested it. Thanks sswells.
C