ColdForged
Forum Replies Created
-
I’m issuing a Mosquito report with a patch for the moderation keys thing. Nice find watts.
steevak, I don’t know what to say about your problem, I can’t find another hole in it and a test of comments from previously unknown name/addresses get put into moderation. Might you have any plugins that would affect this?
Forum: Plugins
In reply to: Admin Search Plugin – replace admin_content?That’s the one that does the actual hijacking, yup.
Forum: Plugins
In reply to: Admin Search Plugin – replace admin_content?I’m essentially replacing the entire page with my own version of the existing page. As far as gotchas one of the biggies is that globals that the existing admin pages expect to exist are declared outside the scope of your plugin hook function, so you’ll need to “global” them to get them in-scope. Aside from that, everything else should be gleanable from the code.
Good luck!
Forum: Fixing WordPress
In reply to: “mark all as spam” vs “deletion” ?Funny, I just released another plugin that, among other things, provides easy access for viewing of any spam comments in your database. See if it meets your needs.
Forum: Plugins
In reply to: Admin Search Plugin – replace admin_content?Here you go, Dave. The page I’m replacing is the Manage -> Comments page, but the method should be easily applied to any page.
Forum: Plugins
In reply to: Admin Search Plugin – replace admin_content?Funny you should ask, Dave. I’m actually doing that very thing right now — “hijacking” an existing page to modify the display — and I’ve finally gotten it going. Later today or tonight I’ll be setting up a test on my public server so I can verify functionality and then I’ll be posting it afterwards. Once I do I’ll post here and you can see how I did it.
Forum: Plugins
In reply to: Admin Search Plugin – replace admin_content?I’m confused now… when I click on the Manage tab, it loads the Posts management page which only shows the most recent 15 posts. How is yours displaying the Pages interface?
Forum: Plugins
In reply to: Admin Search Plugin – replace admin_content?Does it have to hijack the existing pages? Seems like it would be easier to have simply another menu that is a “Search Fulltext” tab instead of trying to work into the existing system. Just a thought.
Forum: Plugins
In reply to: TitleImages2 modificationoOoHoCo, I just wanted to say that that font that you’re using is simply gorgeous. What is it? It is really striking, and with the soft shadows it just looks so elegant.
Yeah, the Image Headlines plugin did caching from the very beginning, before I even put my first enhancements in. I was pretty impressed with Joel’s method of determining the filename. Very nice stuff, that, along with the entire underpinnings.
Keep developing!
If I try to access that file directly — which shouldn’t be allowed by WordPress, but should be allowed by the web server — I get a 403 forbidden error. What are the permissions of the “adhesive.php” file? Everyone, or at least the web server process which is likely either “everyone” or your user id depending on your hosting provider, needs to have read access for it to work.
Forum: Themes and Templates
In reply to: Header ImageWhen I try to load the image that you have specified in your #headerimg style, which is this img, I get a “file not found” 404 error. That’s at least part of the reason you’re not getting anything to display.
Where are your plugins installed? As in full URL to one of your plugin files, for instance.
Forum: Themes and Templates
In reply to: Header text and graphic aligned at opposite endsYou need a common container for your two elements. So, create a div to contain the text element and the image element.
<div class="header">
<h2>Coonce-Ewing.com</h2>
<img src="whatever" />
</div>You’ll want to style your .header as your #header is currently styled. Then, float right the “.header img” element.
Forum: Themes and Templates
In reply to: Header Image HelpPeople are actively helping you in the other thread. What more do you want?
Forum: Fixing WordPress
In reply to: WP 1.5, .htaccess and protectionWP will only modify the parts between the “# BEGIN WordPress” and “# END WordPress” comments, so don’t worry about it… unless you put stuff between the tags :).