Ming
Forum Replies Created
-
Forum: Plugins
In reply to: Possible to add a second post field?A plugin upgrade in under an hour without even being asked. Cheers alphaoide!
Forum: Plugins
In reply to: Possible to add a second post field?Check out Rhymed Code’s Custom Field GUI. It’s the easiest way to add extra fields to the post screen that I’ve found.
To get the values use Scott’s Get Custom Fields plugin.
Forum: Fixing WordPress
In reply to: data copySorry, I assumed you had two currently running blogs you were combining into one. If you’re just moving one blog into another DB then Podz is on the right track. Still, if there are posts in both blogs you’ll need to confirm that their ID numbers don’t over lap.
Forum: Fixing WordPress
In reply to: data copyThe problem is that the posts from each separate install will have used the same ID numbers. And since the ID field requires unique values you’ll get errors importing. Maybe someone could write a script or query to bump ID’s in one database up by 1000 or so.
This will create a problem for bookmarks if you’re not using permalinks.
Forum: Plugins
In reply to: gZip versus WP-Cache 2.0WP is fast and getting faster with each release. Still, it’s got a lot of code and queries to run through and that definitely makes it slower than a static page. If you’ve added extra plugins, especially poorly optimized ones, that can also slow display down.
The 800kb static page is kind of hard to compare because if it gets cached, or your visitors are on high speed connections, 800kb is nothing. Let a dial-up user load an uncached version of that page and you’ll see WP beats the static version rather easily 😉
Personally I run WP-Cache on all my sites including the ones that don’t have enough visitors to require it. I find it returns the pop back to page display. The savings weren’t enough for me (they may be for you) to justify trying to get GZip and WP-Cache to work together. But when a version comes out that supports GZip I’ll definitely be turning it on.
Forum: Fixing WordPress
In reply to: Links formating issue – IE vs. Mozilla (picture provided)When I validate your page it complains document type does not allow element “li” here; missing one of “ul”, “ol”, “menu”, “dir” start-tag. for your sidebar links. So somewhere the lists are getting messed up. You’ll need to go through and correct this first because all kinds of wonky things happy when html isn’t correctly closed.
Once you’ve done that you’ll be able to control the spacing between list items with something like:
ul li { margin-bottom: 12px; }By controlling the spacing that way you won’t need the
<br />tags either.Forum: Fixing WordPress
In reply to: no smileys :-(Looks like a bug? Try putting a space before your smilies.
It looks like they need a space before to match the conversion. That works unless your smilie is the first thing on a line. If someone confirms I’ll file a bug report.
Forum: Fixing WordPress
In reply to: no smileys :-(Coolio.
Can we get a link to your test site? That’ll help us troubleshoot.
I’m off for the night but I’ll check back tomorrow to see if a solution has been posted.
Forum: Fixing WordPress
In reply to: no smileys :-(If the smilies are showing up as text check that you have the ‘Convert emoticons like 🙂 and 😛 to graphics on display’ under Options -> Write
Forum: Plugins
In reply to: NEW PLUGIN – Custom Field GUISuh-weet.
This plugin is a huge step up for WP’s custom fields and is going to save me some major time. Thanks Joshua!
Forum: Fixing WordPress
In reply to: Newbie To WordPRess Install ProblemHave you tried this link? It’s the installation guide for WordPress and should answer your questions.
Forum: Plugins
In reply to: No tags? help with bunny tagsIf you really want to use Bunny’s tags then make the following change in bunnys-tags.php. Replace the function get_bunny_tags_list (lines 115-130 ish) with this:
// prepare the formatted list of tags -- this is what you mess with if your custom field values aren't formatted like described in the instructions
function get_bunny_tags_list($before, $after, $separator)
{
global $bunny_strict;$technorati_tags=get_bunny_tags(' ', 'tags');
$label="Tags";
if(empty($technorati_tags)&&!$bunny_strict)
{
$technorati_tags=get_bunny_tags(', ', 'keywords');
$label="Keywords";
}
if (empty($technorati_tags)) {
$technorati_tags_list="No Tags";
return($technorati_tags_list);
} else {
$technorati_tags_list=output_bunny_tags($technorati_tags, $before, $after, $separator);
return($technorati_tags_list);
}
}It’s a quick fix. If there are no tags found then it returns the phrase ‘No Tags’. You can change this in the code and also include any html you want (for instance,
<p class="tags">No Tags</p>).Don’t forget if you ever upgrade Bunny’s Tags you’ll lose this!
Forum: Fixing WordPress
In reply to: creatings pages with the install.php fileCheck /wp-admin/install.php. Lines 159 through 167 insert your first post and comments. You could use those queries as guidelines to create pages during the install process (since pages are very similar to posts).
Forum: Plugins
In reply to: Remaindered Link/Aside issueNice Beel. Answering the problem without seeing the full code must moves you up a level!
Forum: Plugins
In reply to: One Random Post (not random list or link)You’ve got the following two lines commented out:
<!-- ?php while (have_posts()) : the_post(); ? -->
<!-- ?php endwhile; ? -->Those are the two lines that actually loop through and display each individual post. They should be:
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>That should get the posts displaying. Skippy’s plugin also works quite well.