ColdForged
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Warnings in Plugin ManagementKrikey, that is limited. Next thing you know we’ll see:
Warning: echo, print has been disabled for security reasons.Forum: Fixing WordPress
In reply to: WP not inserting comment_author_email into DBIs this happening for anyone that tries to post or just you? If it’s just you, make sure you have an email address specified in your WP user record. Logged in users who comment get their email and URL information from the user record, regardless of what they type in to the text boxes. If it’s everyone… we’ll jump over that if it comes.
Forum: Fixing WordPress
In reply to: mod_rewrite essential?I don’t want to password protect pages or directories?
Just because you use mod_rewrite doesn’t imply password protecting pages or directories. You can in an .htaccess but you certainly don’t have to.
Forum: Installing WordPress
In reply to: Installing on GoDaddy Windows serverSomebody’s got a
var_dumpof something in there. I assume you’re installing 1.5, in which case there are no activevar_dumps in the code that I can see. Ask GoDaddy where it’s coming from.Forum: Fixing WordPress
In reply to: Privacy w/ blogs?Forum: Fixing WordPress
In reply to: ob_start() errorSo if you disable every plugin you still get the error?
Forum: Plugins
In reply to: Need Admin Manage hack for “View by Categories”Funny you should ask, I just updated the status. Sorry, mitigating personal circumstances have limited my time on it.
Forum: Fixing WordPress
In reply to: Regular Expressions in blacklist?Well, the blacklist check uses the
preg_match()function so it seems a regular expression would work. Did you try cutting it down to just(pharmac|viagra|phentermine|pill|valtrex|zyrtec|prescription)?Forum: Fixing WordPress
In reply to: displaying list of posts from certain categoriesA search for “display posts from one certain category” turned up this thread. See if it helps.
Forum: Plugins
In reply to: How to exclude asides posts as post entries?I describe my asides methodology here.
Forum: Themes and Templates
In reply to: sIFR for ordered list numbers? PHP alternatives?You can see my source here. Look for
$commentcount.Forum: Themes and Templates
In reply to: sIFR for ordered list numbers? PHP alternatives?The way I do mine — because, honestly, it never occured to me to use the list ordinals themselves — is to create a simple PHP counter at the top of the comments loop initialized to 1 and incremented every time through the loop. You can then echo that counter variable inside a div with any class you want.
Forum: Themes and Templates
In reply to: sIFR for ordered list numbers? PHP alternatives?Note also this thread.
Forum: Themes and Templates
In reply to: sIFR for ordered list numbers? PHP alternatives?Are you talking about something like my comment numbers? If not, I’m not sure what your asking.
Forum: Plugins
In reply to: image-headerIt’s likely that WordPress is converting the character in the title on the index to a different character. You can try adding the following code to the plugin down at the bottom where the
add_filter( 'the_title'...)code is:remove_filter('the_title', 'wptexturize');