alanft
Forum Replies Created
-
Forum: Plugins
In reply to: [Widget Logic] Widget Logic causes visual editor to breakyes i see that fine.
i’m guessing something’s going on in the HTML header at the point of calling javascripts which screws up the visual editor. short of pouring over the code in your edit page’s HEAD element, I don’t have a lot to go on. feel free to pastebin that if you like – stripping out any style elements or anything that might be sensitive information.
It must be doing this very indirectly as the only code WL fires on any admin page is to queue up some filters and actions – none of which have any effect on the edit post screen!
Forum: Plugins
In reply to: [Widget Logic] Widget Logic causes visual editor to breaki think that’s a 404 response there
Forum: Plugins
In reply to: [Widget Logic] Show widget on ALL woocommerce pagessee if any of this helps you
Forum: Plugins
In reply to: [Widget Logic] Widget Logic just plain does not workwhat widget logic statements have you tried that make the widget always disappear? try these and see what happens:
(should always keep the widget visible)
true
(1+1==2)(should always make it vanish)
false
(1+1==3)Forum: Plugins
In reply to: [Widget Logic] Widget Logic causes visual editor to breakwell i’ve been using it in a WP3.5 (.1 at the mo) install and not noticed it make a difference to the main post/page editing, so I don’t think it’s a generic issue.
can you put up a screenshot? or would you be able to give me “author” access to your blog perhaps – or any role that can’t publish but can at least write posts for later approval. so I won’t be able to change anything at the front end of the site, but i will be able to see the symptoms in the back end.
Forum: Plugins
In reply to: [Widget Logic] HOW-TO: Hide Widget When User IS Logged In“Without activating the filter at the bottom of the Widget Admin page, the filter text area is invisible on all my widgets. I had to activate it first by placing a checkmark and saving, which I read on the plugin readme file.”
you really shouldn’t have to. do the widget logic text boxes go again if you untick and save? i really hope they don’t
glad it’s all good of course!
Forum: Plugins
In reply to: [Widget Logic] HOW-TO: Hide Widget When User IS Logged InThe above should work without the step that activates the ‘widget_content’ filter.
Also, a little plug for the ‘other notes’ section of the plugin pages – as this is one of the examples given
http://wordpress.org/extend/plugins/widget-logic/other_notes/
Forum: Plugins
In reply to: [Widget Logic] Multi-word page names not workingYou’re almost there. Just
is_page('recentevents')*should* do it, with the wp_reset_query fix option in the WL options
http://wordpress.org/extend/plugins/widget-logic/screenshots/However ticking that option fix may not work and you may have to do a more complex WL code like this:
wp_reset_query(); return is_page('recentevents');You need to put in an explicit return once you start doing logic more complex than a simple conditional tag
Forum: Plugins
In reply to: [Widget Logic] I just want to delete two widgets off of just one pagewell i’m not much wiser looking at the page and a bit in the dark when you say they’re not showing up but are there??
but you could try !is_single(…) with the slug for the page (or the ID if you know it) in the brackets there.
Forum: Plugins
In reply to: [Widget Logic] I just want to delete two widgets off of just one pageit depends on the page, is it a single post, or the home page, and so on. There are lots of ways of identifying pages presented by wordpress – most of which can be picked out with one of the standard conditional tags http://codex.wordpress.org/Conditional_Tags
then you can put those codes into WL’s field as seen in the top image on http://wordpress.org/extend/plugins/widget-logic/screenshots/
Of course you may prefer another widget switcher – there’s a link to widget context in the faq…
http://wordpress.org/extend/plugins/widget-logic/faq/Forum: Plugins
In reply to: [Widget Logic] I just want to delete two widgets off of just one pageyou could use !is_single(…) putting in the post ID, slug or title.
http://codex.wordpress.org/Conditional_Tags#A_Single_Post_Page
Forum: Plugins
In reply to: [Widget Logic] Multi-word page names not workingThe pages title is “Recent Events” and the page ‘slug’ is “recentevents” so that should work, but you may need to use the wp_reset_query fix, as your template looks like it will call the sidebar after the loop
http://codex.wordpress.org/Function_Reference/is_page#Cannot_Be_Used_Inside_The_Loop
on the offchance you check back, feel free to pastebin it or something. thanks
Forum: Plugins
In reply to: [Relocate Upload] Current status of this plugin?i’ve long neglected this plugin. i’ll take a look some time.
if anyone wants to take over or contribute a fix – get in touch here
Forum: Plugins
In reply to: [Widget Logic] Dynamic Logic QueriesHow are you going to generate the content which presumably will vary per category too?