Darren Ethier (nerrad)
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Organize Series WordPress Plugin] Upgrade loop with Organize Series?btw, if a mod could change the title to this post. It’s very misleading and because the feed shows up on the plugin page it could deter people from trying it out.
Forum: Plugins
In reply to: [Plugin: Organize Series WordPress Plugin] Upgrade loop with Organize Series?gestroud, you missed one very important instruction. Organize Series is ONLY FOR WordPress versions 2.3 and up. If you have “category”, post2cat, and linktocat database tables you are using a WordPress version prior to 2.3.
That “your WordPress database is out of date” loop is probably because you upgraded to 2.5 and never upgraded your database. In which case, you’d want to follow the instructions here
If after following all these instructions you still have problems then feel free to continue to post in this thread OR in the Organize Series Support Forums
Forum: Plugins
In reply to: Does plugin notification still work?I’m noticing the same thing on my 2.3 and 2.5 blogs and I’ve seen other threads on this. Yet to see any responses though…
Forum: Everything else WordPress
In reply to: Plugin notification not working?Okay, I reloaded the plugins page and some plugins with confirmed new versions are displaying the related info – others that I know have new versions are not. So…I’m assuming this is a wordpress.org problem?
Forum: Everything else WordPress
In reply to: Plugin notification not working?I’m noticing the same thing – is this something on wordpress.org’s end or would it be something my host is screwing up?
I’m using WordPress 2.5
Forum: Fixing WordPress
In reply to: Multi-post stories?Or you could try Organize Series WordPress Plugin
Forum: Requests and Feedback
In reply to: WP 2.0 and large postsTry out my Organize Series WordPress Plugin. I agree with Moshu – I think a better way to organize your chapters is via categories – which my plugin utilizes well.
Forum: Fixing WordPress
In reply to: Missing icons when writing new post and pageAn update: I found this thread and I tried clearing the cache in my browser and that did the trick. Seems to be a problem restricted to Firefox users.
Forum: Fixing WordPress
In reply to: Missing icons when writing new post and pageI’ve got the same problem…I tried re-uploading all the /wp-include directory but that didn’t help.
Forum: Plugins
In reply to: Donation Tracker plugin or websiteThis plugin here might do the trick.
The code posted by speedphreak is good. I made a simple modification so that the code would only apply to my “events” category.
//only select past-dated posts, except if a logged in user is viewing a single: then, if they
//can edit the post, we let them through
if ($cat_id==xxx) { //where xxx=the category id of your events category
if ($pagenow != 'post.php' && $pagenow != 'edit.php' && !($this->is_single && $user_ID) && empty($q['cat']))
$where .= " AND post_date_gmt <= '$now'";
$distinct = 'DISTINCT';
}
} else {
if ($pagenow != 'post.php' && $pagenow != 'edit.php' && !($this->is_single && $user_ID)) {
$where .= " AND post_date_gmt <= '$now'";
$distinct = 'DISTINCT';
} }