ColdForged
Forum Replies Created
-
Forum: Themes and Templates
In reply to: IE: 703px รขโฐย 703px?This might be the infamous box model problem. See if that description helps.
Forum: Plugins
In reply to: Spell Check in CommentsSorry about the wrong function names… I switched over to Markdown for page layouts which unfortunately kills underscores in code :(. I’ll fix the pages today.
In terms of your problem, make certain you’re doing the
spell_insert_headers()call as well in your comments template.Forum: Themes and Templates
In reply to: Comments.php not sending commentsDo you have entries in the blacklist on the Discussion tab of the WP admin interface or do you have the checkbox checked for “Blacklist comments from open and insecure proxies”?
Forum: Plugins
In reply to: Returning mysql table dataDid you make new columns in the wp_posts table? If so, you’re in luck, because columns in the wp_posts table are automatically populated in The Loop, and you can access them by simply doing this:
<?php echo $post->my_column_name; ?>If you didn’t make new columns in the wp_posts table… why don’t you? ๐
Forum: Fixing WordPress
In reply to: Dates missing on all but newest postmoshu has better mojo.
Forum: Themes and Templates
In reply to: Comments.php not sending commentsWhat’s the comment_status in the database for those comments?
Forum: Installing WordPress
In reply to: WordPress Database Error @ Step 2Hmm… I get the same error trying to create a table with dashes, though I can correct it by putting the table name in backticks. That would require an update to the code. Any reason you have to have the dash character?
Forum: Installing WordPress
In reply to: WordPress Database Error @ Step 2You can’t have dashes in your table prefix in wp-config.php, apparently. Old MySQL version?
Forum: Installing WordPress
In reply to: You are not authorized to view this pageAre you running on an IIS Windows server? See here if so.
Forum: Themes and Templates
In reply to: How do I make a Tag cloud for my categoriesYou mean “the new mullet“? ๐
Forum: Plugins
In reply to: Use Exhibit for Pages, not only PostsYou’ll need to modify the code in order to get it to appear for pages and in the right place. Assuming the latest version of Exhibit, make the following changes in the file exhibit10i.php(bear in mind, I haven’t tested this but I’ve done similar things in my spelling checker plugin):
Change (line 268):
// Are we on the right page?
if(preg_match('|post.php|i', $_SERVER['SCRIPT_NAME']))to this:
// Are we on the right page?
if(preg_match('|post.php|i', $_SERVER['SCRIPT_NAME']) ||
preg_match('|page-new.php|i', $_SERVER['SCRIPT_NAME']))That’ll get it on the page. Now, to position it we have to modify a bit more:
Change (line 292):
if ($_GET['action'] == 'edit' || get_settings('advanced_edit')) {
echo 'var submitButtonPara = document.getElementById("save").parentNode;';
} else {
echo 'var submitButtonPara = document.getElementById("saveasdraft").parentNode;';
}To:
if (preg_match('|page-new.php|i', $_SERVER['SCRIPT_NAME']))
{
echo 'var submitButtonPara = document.getElementById("savepage").parentNode;';
}
else if ($_GET['action'] == 'edit' || get_settings('advanced_edit')) {
echo 'var submitButtonPara = document.getElementById("save").parentNode;';
} else {
echo 'var submitButtonPara = document.getElementById("saveasdraft").parentNode;';
}Hope that helps.
Forum: Fixing WordPress
In reply to: publish entry, wait, timeoutI presume it’s the same issue… on that ping to other sites it will timeout and quite often — as is the case with my installation if I have the problem — I’ll never get off the page that has the “Publish” button. However, I’m used to it so I’ll just make certain that the post appeared on my front page and call it a day :).
I actually still do ping backs. I just expect that sometimes I won’t get the response back and accept that.
Forum: Installing WordPress
In reply to: Error with preg_matchIf it’s right after a “foreach()” clause, it’s likely the classic mismatched verison of the Zend Optimizer problem with PHP 4.3.10. You hosting provider updated to the newer PHP without also updating the Zend Optimizer.
Forum: Fixing WordPress
In reply to: publish entry, wait, timeoutSee here.
Forum: Everything else WordPress
In reply to: HEADER ROLLOVER / swap IMageThis may prove helpful.