freshifreshy
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Auto Inserts Line Break?No, they don’t show up in the editor, only the source code, as if they’re a part of the shortcode.
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined method MagpieRSS::get_item_quantity()Resolved my issue here.
Forum: Fixing WordPress
In reply to: get_item_quantity WordPress 2.9 errorFigured it out.
If the feed you’re referencing is empty, simply check if the number of items equals zero:
if ($rss->get_item_quanity != 0) { run the code } else { run something else }
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined method MagpieRSS::get_item_quantity()I’m having the same problem with an RSS feed that’s sometimes empty, sometimes not. Is there a way to keep the error from killing the rest of the page? Maybe just not run the code if there’s a problem with the feed?
Forum: Fixing WordPress
In reply to: get_item_quantity WordPress 2.9 errorI’m getting the same problem with a finicky rss feed. Is there a way I can skip the code if it returns an error?
Forum: Fixing WordPress
In reply to: Password Protect Custom Template PageInteresting option, but not quite what I’m looking for.
My template makes a few database queries that I don’t want initiated unless the password has been entered.
Forum: Fixing WordPress
In reply to: Comment Anchor on Paged ResultsPoking around the comment-template.php file, I came across the function
get_comment_link. Using this worked.Forum: Plugins
In reply to: Twitter Tools not updatingTwitter Tools Version: x2.0
WordPress Version: 2.8.6Despite selecting that I want Twitter notified of my new posts, nothing is being posted on my Twitter account.
Try to change JS Library to use fro JQuery to prototype.
Tried this, but it didn’t work.
I know people are having various problems, but I was wondering if anyone has been having this problem and if they found a solution.
Thanks
Forum: Fixing WordPress
In reply to: paging.. maybe simple but can’t get working.I was having a similar problem. Got a 404 error every time I tried to go to page 2.
I noticed I was linking to the blog archive like this:
https://www.your-url.com/blog
The first page returned fine. Then I realized my permalink structure was /%category%/%postname%/
I changed the link to this and the paging started to work:
https://www.your-url.com/category/blog
Hopefully this will help someone.
Forum: Fixing WordPress
In reply to: Search Page with Multiple LoopsCan only guess might need to add wp_reset_query(); after your query loop.
That didn’t work, but I realized that I had the Search Unleashed plugin activated. I deactivated it and now the search is working.
Thanks for your help!
Forum: Fixing WordPress
In reply to: [Plugin: Sociable] Unable to Share HomepageI got it to work by using query_posts instead of creating a new custom query. However, it would still be nice if I could pass the url example.com instead of example.com/home when I’m on the homepage.
Is that a possibility?
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedRe: my post 30 seconds ago, I re-encoded my MP3 with Garage Band and now it sounds okay.
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedMy audio sounds like crap when I try to play it with the player. Sounds fine when I play it directly from the source. Anyone else getting this problem?
Forum: Plugins
In reply to: [Plugin: flshow Manager] And nothing happens…I’m having this same problem. Set height, but after it says it’s loading images, nothing shows up. Any suggestions to fix this?
Forum: Fixing WordPress
In reply to: Query both pages and posts for custom field?Wow, that was easy. thanks!