ColdForged
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpWaitaminute… are you on a Windows or Unix or Apple host? Didn’t I recall you having trouble with pathnames before? Or am I thinking of someone different?
Forum: Plugins
In reply to: Setting a cookie in headerWhat is
$setset to?Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpHas this always happened or did it just start?
Forum: Plugins
In reply to: Custom FieldsFrom looking at the code, it looks like
the_meta()iterates over all the custom fields so I’m unsure why it wouldn’t list all of them.That said, if you want a particular one returned to you to deal with as you wish, you could look into using the
post_custom()function and passing it a particular key you’re interested in.Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpAnd when you say “it just shows the regular WP Admin interface but no content”, what does that mean? Do you mean it has the appropriate headers — including perhaps even a highlighted “tab” for the current page — and then the footer immediately following?
Forum: Fixing WordPress
In reply to: I can’t get to pages in the Admin that use Dir/file.phpYou running straight 1.5 Strayhorn release?
Forum: Plugins
In reply to: Code problemI’m a bit confused myself why the commenting out of that line with the single-line comment syntax causes that problem.
Forum: Plugins
In reply to: Help changing font size help!Your links are explicitly set to have a font size of 11 pixels. Remove that.
a {
color: #0000dd;
font-size: 11px; <-------------------
font-family: verdana, arial, helvetica, sans-serif;
text-decoration: none;
/* background : transparent; */
}Forum: Plugins
In reply to: Code problemOdd one, Jaxia. Here’s the fix: Instead of inserting slashes in front of that “OLD DEFAULT” version, do it like so:
/* $text = preg_replace("|(?!<[^<>]*?)(?<![?./&])b$acronymb(?!:)(?![^<>]*?>)|imsU","<acronym title=\"$description\">$acronym</acronym>" , $text);*/Or, get rid of that line completely. See if that helps.
Forum: Plugins
In reply to: Code problemSome background would be helpful:
1. Which acronym replacer?
2. Which instructions?Forum: Plugins
In reply to: If page do not display commentsHave you tried the
is_page()function instead of all those?Forum: Fixing WordPress
In reply to: Comments not working; other posts didn’t helpAnn, there’s nothing in that template to actually show comments :). Perhaps that’s the issue. I’d suggest modeling more of your template off, for instance, the default template.
Forum: Everything else WordPress
In reply to: SpamIt’s a setup step, seemingly. If those seemingly random comments get in and get whitelisted by anti-spam software then later attempts to spam with real spam to those previously whitelisted email/URLs have a chance at getting through.
Forum: Plugins
In reply to: Can’t set cookiesIf you post some details on your situation, Dave, we might be able to assist. For both of you, be certain your cookie setting calls are happening before any output is sent to the browser. That’s before
<html>,<head>, anything.Forum: Fixing WordPress
In reply to: Removing all traces of commentsSee the Codex for an intro to themes and theme files.