dj maskell
Forum Replies Created
-
Of course dev consoles are there to mess with things, but I’ve never seen one break something merely by being opened. Usually it’s the next step of actually using the console to mess with things that causes brilliant and amusing failures.
Thanks guys. Did a little more homework and experimenting on other computers.
Bug *not* reproduced on:
Ubuntu 14 + Firefox 33 + Firebug 2.0.6
Win 7 64 + Firefox 33 + Firebug 2.0.6So I’m starting to suspect it may be some interaction with Waterfox and Firebug, or it could be something stupid with my machines. Either way, it’s rather strange that a dev console would interfere with a site. Never seen that happen.
Forum: Everything else WordPress
In reply to: ForbiddenAh yes, I could see that as potentially being a problem!
Forum: Everything else WordPress
In reply to: ForbiddenI’d start by checking your file permissions (644 for files, 755 for directories, generally speaking) and looking over your Apache config (including .htaccess files). Have you changed anything else with your filesystem lately?
Forum: Plugins
In reply to: Admin Sidebar Menu Won't Stay ExpandedThe solution from Humbletim worked for me, good call. Quick and easy.
Side note, Firefox does not allow JS to run from the url bar by default. The workaround is using the javascript console command editor in firebug or using another browser.
Forum: Plugins
In reply to: [User Taxonomies] Terms not assigned to a user are displayed as tickeddashaluna Had the same problem and came to the same solution. This is an important one, I hope the developer includes this fix in a future version.
Background info, when a term array is passed to is_object_in_term(), it apparently checks the database fields for both “term_id” AND “term_taxonomy_id” which are NOT the same thing. Specifying that you want to check a specific term_id instead of the full array solves the problem.
wptobbe You mis-spelled the last variable. You wrote “$term->ID” when it should be “$term->term_id”. That should fix your problem.