Plugin causes widget panels not to open. Disable the plugin, panels open up again.
Plugin causes widget panels not to open. Disable the plugin, panels open up again.
Same here. Widget Panel doesn't open.
Same for me... disabling widget-logic-visual everything works again.... Plus the widget areas don't open up either.
same for me
yep same here! once deactivated all widgets work again.
ditto
+1 for this
me too
same here, is there any aproach how to fix the problem ?!?
Work around is append url with: ?widgets-access=on
/wp-admin/widgets.php?widgets-access=on
After I desactivated and reactivated the plugin it is working again.
Hope that help you guys
Tried deactivating/reactivating, didn't work. :(
yes i have to admit the same :(
I deactivated an were working on the widgets. and activated again. it works until you reload the page :) then its gone
sorry for misleading
@ simon, you have also an idea how to work with the existing widgets i need to change some of the conditions for some of my widgets and have no idea how to do that
What the widget breaks is the jquery animations. The workaround is to Enable Accessibility Mode. See earlier post by SimonBugler for a _GET way to turn that on.
Before I saw Simon's shortcut, I did it the same thing another way. I turned on accessibility from the Screen Options. HOWEVER! that too is a jquery pulldown, and thus broken. Before I saw the URL workaround, I did it this way:
Now you can add content to the widgets using the non-jquery drag-and-drop method.
I'll give Johnh44's instructions a try and let you know if it works. I love this plugin and want to keep using it. :)
Dear John,
that word for general widget funcions but I try to access the logic function of the widgets so I can display them limited to certain pages.
Any Idea how to do that?
Thanks
I'd use a good theme that gives you a lot or control over widgets, like Atahualpa.
yeah, good idea. I am already with a nice theme which is already adapted. will break my head to change that now :). would love to see the plugin work again.
What you guys think about this one
http://wordpress.org/extend/plugins/widget-logic/
Maybe an alternative?
@andaluzo, I think a better solution would be to use this plugin.
http://wordpress.org/extend/plugins/dynamic-widgets/
I am currently using it on a few websites and it works well plus it's being updated constantly.
Widget Logic Visual is not going to be updated from what I see. It will only work if someone wishes to continue updating this plugin. For now I am using the plugin I mentioned here as an alternative.
I hope this helps....
@mbr solution, thanks for the hint.
Today I deleted this "Widget Logic Visual" plugin one, not worth the pain waiting.
Was having problems with my WP site, deleted Widget Logic Visual, my site began working properly, installed Dynamic Widgets and the site still works.
does not work me for either. So I am wating to upgrade the live site, or find some other solution.
Widgets froze until I de-activated this plugin. Hopefully they are working on a fix, as it is a valuable plugin.
FIX
In js/jquery.nyromodal.js change $.curCSS to $.css (find replace, one instance).
$.curCSS doesn't exist anymore in jQuery 1.8.x (see: http://blog.jquery.com/2012/08/09/jquery-1-8-released/).
FIX
Add following code on line number 58 (in widget_logic_visual_admin_enqueue_script() function)
` wp_register_script('jquery.1.7' ,plugin_dir_url(__FILE__).'js/jquery-1.7.1.min.js');
wp_enqueue_script('jquery.1.7');`
And it works fine for.
neither work for me the $.curCSS fix does nothing.
the jquery 1.7 allows widgets to open up but not editing limitations.
thanks for the help and more help appreciated.
This fix works for me. I found it in the Support forum for the Widget Logic plugin, which Widget Logic Visual is built upon.
WP3.5 uses jQuery 1.8... and in this version of jQuery it seems that %i% throws an error.
To fix this open widget_logic.php go to line 132
and change
if ($number==-1) {$number="%i%"; $value="";}
for this
if ($number==-1) {$number="XXX"; $value="";}.... And finally open
wp-content/plugins/widget-logic-visual/js/jquery.nyromodal.js
and search and replace this:
$.curCSS(elm,name,true));
for this:
$.css(elm,name,true));
Originally posted here.
sdaveCL's fix seems to work for me too.
You must log in to post.