David G
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Author Bio Plugin IssueI’m not seeing it … the author-bio plug-in doesn’t appear to be currently active.
Forum: Fixing WordPress
In reply to: How to display contributor bioMy author-bio plug-in will add the bio for whoever is listed as the author of the post.
Forum: Plugins
In reply to: Author Bio Plug-inThe style classes you’ll want to create are:
author_bio
– top level class
author_bio_title
– wraps the author title
author_bio_gravatar
– wraps the gravatarHere’s a simple example of how I styled the author bio box on one of my sites:
.author_bio {border-style:groove} .author_bio_gravatar {float:left; margin: 10px 10px 10px 10px;}:
Forum: Plugins
In reply to: Author Bio Plug-ini need to sstyle the bio box, but am having trouble with editing the author bio class.
where is that located?It doesn’t exist out of the box … you can create it any way you want. I recommend adding it to the style.css file in a child theme.
The exclude category option also doesn’t appear to be working.
Forum: Plugins
In reply to: Author Bio Plug-inYou can style the text by altering the author_bio class.
Forum: Plugins
In reply to: Author Bio Plug-inIf you are using version 0.07 of the plug-in, just edit the Author Bio label text in the settings.
If you’re not running version 0.07, upgrade and you’ll be able to edit the label.
I’m going to change the default for that field to not include the colon, as it doesn’t make much sense.
Forum: Fixing WordPress
In reply to: Author’s bio on bottom of postCheck out my Author Bio plugin.
Forum: Plugins
In reply to: Author BioCheck out my Author Bio plugin.
Forum: Fixing WordPress
In reply to: HTML tag names appearing in text (XMLRPC posting)I just grabbed all the XML Perl modules that they list …
Perl modules don’t really apply here … as wordpress runs in PHP.
david
Forum: Fixing WordPress
In reply to: HTML tag names appearing in text (XMLRPC posting)Tom:
Do you know what version of libxml2 you’re system is using?
david
Forum: Fixing WordPress
In reply to: HTML tag names appearing in text (XMLRPC posting)Are you running selfhosted blogs?
Yes.
libxml2 was recently updated in Fedora 9 … although I also upgraded to 2.6.2 around the same time.
Forum: Fixing WordPress
In reply to: HTML tag names appearing in text (XMLRPC posting)Yeah, I’m seeing it too. Seems to have manifested after upgrading to 2.6.2. Anything that uses the XML-RPC api is effected (including iPhone WordPress app).
FWIW: I just submitted ticket 7771 (https://trac.www.ads-software.com/ticket/7771) to trac … dunno if it’s a dupe, but I’m sure they’ll tell me if it is.
Forum: Plugins
In reply to: Error after update to 0.8Warning: Cannot modify header information
If you haven’t already, grab version 0.9.
david
Forum: Plugins
In reply to: Auto word(s) link?If you’re talking about invoking the friend list from the main menu … I’ve got a simple fix for that:
In the ff_add_menu function, add a slash ‘/’ in front of wp-content:
function ff_add_menu() { add_menu_page('Friend Finder', 'Friends', 9, $siteurl.'/wp-content/plugins/friendfinder/friendslist.php'); } add_action('admin_menu', 'ff_add_menu');
david