converting2wp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Condition not workingCongrats! If you mark the topic as resolved, it’ll save the volunteers here from checking to see if you need more help.
Forum: Fixing WordPress
In reply to: Taxonomy and Author Post issueDoh.
Your first condition is always true. The *taxonomy* “exists” irrespective of whether or not the particular post has a writer associated with it.
Try this condition instead:
if (has_term('','writers')) {Forum: Fixing WordPress
In reply to: Taxonomy and Author Post issueOkay. Sorry. I’ve taken my testing a bit further and am running into the same problem.
Forum: Fixing WordPress
In reply to: Taxonomy and Author Post issueAre you sure the call to the_author_posts_link is inside the loop? You may have to share more of your template file for us to help figure out what’s gone wrong.
Forum: Fixing WordPress
In reply to: Feeds – In and OutIn order to repost links to the Daily Readings from the usccb.org site, you need their “Subscribe” link, not the “Share” link. Click that, then click the “RSS feeds” link and you’ll find the link for the feed for the Daily Readings: http://www.usccb.org/bible/readings/rss/
Now go to your Dashboard > Appearance > Widget and drag the RSS widget to where you want the link to the daily reading to appear. In my test the RSS widget truncated the reading — you may just want to show the link back to the usccb.org site. The full text of the Readings is published in the RSS feed, and while it may be possible to find an RSS plugin that would pull the entire set of readings to your site, formatting may be an issue — and be sure to check on the permission to republish it.
To send information “out” you just need to “advertise” one of the feeds available on your site. The main one is http://your-site-address/feed, but if you have a complex site, you can use different feeds for different categories and more. See this Codex Article for more info.
Once you have the feed you want, you can pull it into Facebook, share it with other related sites (so they can repost links to your info the way you’re reposting the usccb.org information), advertise it to your followers so they can get your news via Google Reader or their favorite RSS tool, etc.
Hope that helps.
Forum: Fixing WordPress
In reply to: server file permissionsIf you’ve chosen a hosting service with some experience in supporting WordPress, their support staff may be able to track this down much more easily than we.
There are dozens of different server configurations out there. Since we’ve got no insight as to what your file system permissions look like or how the web server processes are set up to run (as the user that owns your files? as a different user?) I don’t think there’s much useful that we can say. Your host support team, though, should have direct access to that information so providing them with the text of a specific error message (probably more than “the ‘file permissions’ error”) may give them the info they need to help you.
Best wishes.
Forum: Fixing WordPress
In reply to: Remove line break in titileIt’s the width parameter in the #branding section that’s causing the problem. Try changing that to 100% (or a smaller amount it you’re going to do something else with the right hand side of the header).
And if you’re not using Firebug or the Firefox or Chrome “inspect element” to look at CSS for a specific area of the page, I highly recommend checking out at least one of those.
Forum: Fixing WordPress
In reply to: Feeling trouble in showing pages to my website.This looks like a dup of http://ww.wp.xz.cn/support/topic/menus-went-off-from-homepage?replies=2
If not, please clarify the problem since the link is no longer demonstrating the problem. If it is a dup, please close this one as resolved.
Forum: Fixing WordPress
In reply to: Menus went off from homepageIt looks as if you fixed this (Announcements and Job Listings are now on the main menu).
Will you please mark it resolved and, if applicable, add any info that you learned that might be helpful to others.
Thanks.
Oh. And http://core.trac.ww.wp.xz.cn/ticket/20237 has a “micro plugin” that may be of interest.
Well… It’s actually a fairly deep question. The “Distraction Free Writing” proponents seem to actively oppose providing buttons, but they do support keyboard shortcuts (click the ? for help). And there are also suggestions to rearrange your edit panel (moving pieces below the edit window, minimizing the navigation sidebar) to make the “normal” window more like “full-screen”.
On the other hand,
Hover over the full screen edit button and you’ll see a tool-tip – ALT-Shift-GTyping “Alt-Shift-G” (in 3.4.1 for me sometimes) gives me a “full-screen” editor with the full complement of editing buttons — *not* the Distraction Free Writing version, but the “old style” full-screen mode.
I’m not sure this works reliably and I don’t think there’s any inclination to improve support of it in the future.
FWIW, there’s an “idea” opened for this at
http://ww.wp.xz.cn/extend/ideas/topic/combine-distraction-free-writing-and-kitchen-sink#post-22608 with a link to a discussion in the support forums and a trac ticket, but the idea itself has been marked as “pluggable”.Forum: Fixing WordPress
In reply to: Link Drop Down menu won't workWhen you bump a post it makes it looks as if someone has already tried to answer your question and so *decreases* the chance that anyone will look at the thread.
Please (re)read the Forum Welcome Message
That said, the HTML you posted has a syntax error, so it’d probably be helpful post a link to the problem page — along with with more info on what you mean by “doesn’t work”.
Forum: Fixing WordPress
In reply to: Change text on protected postTry changing the “echo” above to “return”. [I just copied the code from the referenced incident and “echo” worked for me where I’m also using twentyeleven — but “return” also works and may prevent the extra form from showing up in your example.]
Forum: Fixing WordPress
In reply to: Change text on protected postYou’ll need to post a link to the page you’re talking about for us to have any chance of helping. In my test, the password form appeared where I’d expect to see it.
Forum: Fixing WordPress
In reply to: Condition not workingWhen trying to figure something like this out, I resort to debugging tools that confirm/deny what I think is true about the variables. Some links that may be helpful:
http://nacin.com/2010/04/23/5-ways-to-debug-wordpress/
http://fuelyourcoding.com/simple-debugging-with-wordpress/
http://codex.ww.wp.xz.cn/Editing_wp-config.php#Configure_Error_Log
https://gist.github.com/3219824Best wishes.