amoswright
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: is_dynamic_sidebar to return FALSE with multiple sidebarshad same problem:
is_active_sidebar()wasn’t working with sidebar name… but ravisarma is right, it works with ID. there was just one gotcha for me before getting it to work, pass the id without quotes, for exampleis_active_sidebar(3)works butis_active_sidebar('3')does not. thanks for the help all!Forum: Fixing WordPress
In reply to: WordPress 2.8: No toolbars & can’t read post textthe automatic re-install worked for me, thanks for the link. the step that made the difference was simply re-uploading new, fresh copies of wp-admin and wp-includes.
Forum: Fixing WordPress
In reply to: Edit Pages Reload ProblemI’m not sure if nobody else has this problem, or if I’m just not describing/searching properly. Here are links to screenshots of
1) an image the post edit screen with the bug, immediately before it causes itself to reload, and then
2) the screen that loads itself (though it never completes loading). I tried reverting to wordpress 2.6, disabling plugins, re-upgrading, and the problem persists. Now, oddly, it occurs intermittently. I’m at a total loss, and would love to hear from others, even to know if it is a known bug or not…
Forum: Fixing WordPress
In reply to: Edit Pages Reload ProblemUpdate/clarification… I’m using FF on ubuntu, and the WP version is 2.6.1. Pages edit fine, when I try to edit a post, there is a <div> above where you select a category for your post (yet this div is still in the catrgory tab), and this div is filled with a mini-version of the current page, as though it’s an iframe loading itself…
I’m pulling my hair out… this one is hard to track down.
Thanks!Forum: Fixing WordPress
In reply to: WP auto adds <br> with form fields on same lineHere is an option that works for me – Go into “code” view for your post, then give your form an id, like <form id=”your_form_id” … and then in your theme .css file add this css style:
#your_form_id br { display:none;}
It is perhaps less covenient because you have to give each form the id manually, but involves no patches (plus, I couldn’t get the line break fix described here to work for me).