iand
Forum Replies Created
-
Forum: Plugins
In reply to: Five plugins you can’t live withoutThe wp-plugin manager is pretty close – there is one click installation of a fair few plugins.
As for ones I can’t do with – Customisable post listings (coffee2code), runphp, spam/ refferrer karma (dr dave) andwp-plugin manager.Forum: Fixing WordPress
In reply to: short excerptsYou could try http://guff.szub.net/the-excerpt-reloaded , there is also a plugin called ‘limit posts’ or something, can’t find a referrence at the moment though.
Forum: Everything else WordPress
In reply to: _e in search in the forum lists ALL the users.That only shows up users whose names contain ‘e’. Something similar will list everyone though…
Forum: Themes and Templates
In reply to: Removing <p> from excerpt?Use the wpautop plugin: http://wordpress.org/support/topic.php?id=25067#post-141312 (and delete the line that does the same thing to the content).
Forum: Fixing WordPress
In reply to: Strange Referral SiteNo, you just need to change
$can_configure = true;to$can_configure =false;and set the password you want to use.Forum: Fixing WordPress
In reply to: Strange Referral SiteIf you want to stop them, this has been doing a pretty effective job on my site: referrer-karma
Forum: Plugins
In reply to: Suggestions for Mobile Blog hacks/plugins (urgent…please help!)There is also indyjunior: http://www.bryanboyer.com/indyjunior/ though its maps are less detailed than worldkit’s.
Forum: Fixing WordPress
In reply to: Adding an entirely new Links SectionTry:
<?php _e('Funny Sites:'); ?>
<ul>
<?php wp_get_linksbyname('Funny Sites'); ?>
</ul>Forum: Themes and Templates
In reply to: Remove extra formattingThis thread might help:
http://wordpress.org/support/topic.php?id=25067Forum: Fixing WordPress
In reply to: mod_rewrite makes me want to cryThis might just be an OS X thing, but to get nice permalinks on my local install I had to add the following my username.conf file:
<Directory "/Library/Webserver/Documents/yourWPfolder">(and restart apache).
Options FollowSymLinks
AllowOverride All
</Directory>
Of your path may be different.Forum: Plugins
In reply to: Show/Hide plug-in for extended entriesA quick look around:
http://wordpress.org/support/topic.php?id=23831
I didn’t think geourl was still in WP?Forum: Plugins
In reply to: Show/Hide plug-in for extended entriesYou are putting the
<?php wp_head(); ?>in the<head></head>section aren’t you? I just checked mine at it is there.Forum: Themes and Templates
In reply to: Post coloringFrom the codex loop page: http://codex.wordpress.org/The_Loop
<?php if ( in_category('3') ) { ?>
<div class="post-cat-three">
<?php } else { ?>
<div class="post">
<?php } ?>I am guessing you could extrapolate this:
<?php if ( in_category('3') ) { ?>
<div class="post-cat-three">
<?php elseif ( in_category('4') ) { ?>
<div class="post-cat-four">
<?php elseif ( in_category('n') ) { ?>
<div class="post-cat-n">
<?php } else { ?>
<div class="post">
<?php } ?>
I am guessing with the elseifs, but the logic seems sound enough. Someone might know the right syntax.Forum: Plugins
In reply to: Show/Hide plug-in for extended entriesVersion 1.4 of ScriptyGoddess’ plugin works on my 1.5 powered site. See
http://the-way-to-the-centre.org.uk/blog/archives/2004/07/ for an example (the bottom post).Forum: Fixing WordPress
In reply to: After upgrade – minor glitch in Admin PanelTry clearing the cache – ctrl+F5 or the equivalent.