lbessant
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hackers mailing lists (still down according to Podz)I signed up for the testers list just over an hour ago, and I didn’t get any rude messages like that one…
Forum: Plugins
In reply to: Introducing WP-Amazon PluginThe fixed version available from the Plugin Repository works in 1.5 for me….
Forum: Fixing WordPress
In reply to: How to stop WP from inserting `<br />` in my javascript?Put the JavaScript in an external .js file. Call it from your page or post. For instance:
<script src="yourscript.js" type="text/javascript"></script>Forum: Themes and Templates
In reply to: One Large Background Image in Post AreaWhat you need is:
#content{
background-image:url('http://www.satireisdead.com/wordpress/wp-content/themes/mallow/images/jester.jpg') no-repeat left;
}
The “url” bit is literal text – don’t replace it with the path to your image.Forum: Themes and Templates
In reply to: replace Search with Google searchThe search form code, as Avenir said is in searchform.php.
It looks like this:
<form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div><input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>Forum: Fixing WordPress
In reply to: Assistance Required – go.php RedirectionDoes this post help?
It’s always worth searching the forum first.
Forum: Fixing WordPress
In reply to: .htaccess problem on Windows IIS (WordPress 1.5)IIS doesn’t know anything about .htaccess files, unfortunately.
Forum: Fixing WordPress
In reply to: Image Duplication with Exhibit PluginIt’s because you’ve added the images to the post by selecting them on the right of the Exhibit interface (making the tumbnails appear on the left), then clicked on the thumbnails.
You can either not click on the thumbnails on the left, which means all you’ll see in your editing page is
<!--exhibit-->(possibly with some options), or click on them to insert the thumbnails where you want in the text flow, then click the “remove” link, which will stop Exhibit adding its thumbnails at the foot of the post..Forum: Fixing WordPress
In reply to: Major Issue With Weblog on IEThe usual fix is to run /wp-admin/upgrade.php – this has been mentioned here a few times….
Forum: Fixing WordPress
In reply to: Javascript on a static page???Works for me. I have some JavaScript on this page.
Unwanted formatting of the code is achieved by putting the code in an external file and linking:
<script type="text/javascript" src="yourscript.js"></script>Forum: Fixing WordPress
In reply to: Weird artifact at bottom of screen.Forum: Fixing WordPress
In reply to: Gravatar ‘R’ ratingDoes this help?
Or the Rating Guidelines?
Forum: Themes and Templates
In reply to: Site Skinning With 1.5?The usual cause of that error is whitespace either before the opening
<?phpor after the closing?>in the plugin file. Open it in a text editor and make sure there are no spaces or line breaks at the end…Forum: Fixing WordPress
In reply to: Database problems…?Before going any further, you might want to address this error that’s appearing at the end of the post:
Fatal error: Call to undefined function: time_of_day() in /home/whitema/public_html/wp-content/themes/Manji/index.php on line 4Then see if more appears……
Forum: Themes and Templates
In reply to: main page display strangenessIf you don’t want “by mykel–” appearing (and as it’s currently commented out, it’s a fair guess that you don’t), you can delete that piece. If you *do* want “by mykel–” to appear, just remove the comment tags.
Not a WP issue, it’s HTML. And I don’t think a lot of people have — as part of their user names….