ColdForged
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: WYSIWYG editorThat would involve far more than a plugin. Word supports rich-text pasting which web browsers do not. It’s plain text. Plugins will not help you in this case.
Forum: Plugins
In reply to: Use Exhibit for Pages, not only PostsI’m not using it at all. I only looked at the source to figure out what it did. I was just going by what others said and trying to provide a way to have it appear in the correct place.
Forum: Plugins
In reply to: Newbie question: Email subscriptionsTry this plugin (found by search here for “subscribe email”).
Forum: Requests and Feedback
In reply to: Recent Post By CategoryYes, there is with the previously mentioned c2c plugin. I use it for my asides and my currently reading list, both of which are categories. I detail how I did it with his plugin here.
Forum: Plugins
In reply to: More on Setting Cookie in Head🙂
Forum: Plugins
In reply to: Which pluginsActually for 2. I’d suggest the IImage Browser. Does everything you asked.
Forum: Plugins
In reply to: More on Setting Cookie in HeadIt’s because you’re setting an explicit path. Therefore, every subdirectory on your site will get it’s own cookie. Bleh. Remove the parameters to
setcookie()after the expiration time.Forum: Plugins
In reply to: Why he could still leave comments in my blogDepends… how did you disable comments in your blog?
Forum: Fixing WordPress
In reply to: Full posts in archivesEdit your
archives.phptemplate and usethe_content()where you currently havethe_excerpt().Forum: Fixing WordPress
In reply to: Removing paged category/monthly archivesUse this plugin. Set all the per-page settings on there to -1 except for ‘home’ and set that to 10. Then remove all of the “navigation” DIV in your main template (e.g. the stuff with the
posts_nav_link()calls).Forum: Plugins
In reply to: Using loops and query_postsMost welcome.
Forum: Plugins
In reply to: Using loops and query_postsYes,
catdoes have special handling for a single exclusion.Forum: Plugins
In reply to: Using loops and query_postsI mean there’s no point in the code where WP correctly handles a negative number for a ‘p’ in the query string. It simply gets placed in the WHERE clause of the query with an ” AND ID = “.
Forum: Plugins
In reply to: Using loops and query_postsYou need something like:
<?php query_posts('p=-1');?>Which currently doesn’t exist. Just didn’t want to confuse the initial poster.
Forum: Fixing WordPress
In reply to: Error 28 from table handlerI’d suggest repairing your tables from phpMyAdmin.