| « Is Writing Magnetic Headlines Art Or Science? | Are you neglecting your content's visual appeal? » |
With the flurry of recent development, b2evolution has quickly caught up to more popular blogging platforms such as WordPress. The only thing we still seem to be lagging behind in is the number of plugins and themes. Here are the essential I’ve seen elsewhere that would be great for evo, if they already exist please do let me know:
CommentLuv
When somebody leaves a comment on a CommentLuv blog, the plugin finds their blog’s RSS feed and links to that person’s latest post. Simple, but it’s spread like wildfire because it adds incentive for comments and helps to build community.
Stripe Ad
The stripe ad is the newest ad craze, mainly because it looks a little different. Shouldn’t be too hard to implement, but nice all the same.
Flickr Photo Dropper
Easily add creative commons photos to your post, what more can I say?
Gravatars
These are avatars that look the same everywhere, and they’re very good for comments and for showing latest visitors. There may already be a plugin for this that I have missed, so if you could direct me to it that would be awesome.
UPDATE:
Hari pointed me to the gravatar code for b2evolution. Here’s what needs to be done:
Place the _item_comment.inc.php file inside your skin folder and customize it:
Find this line
PHP:
switch( $Comment->get( 'type' ) ) | |
| |
{ | |
| |
case 'comment': // Display a comment: | |
| |
if( empty($Comment->ID) ) | |
| |
{ // PREVIEW comment | |
| |
echo T_('PREVIEW Comment from:').' '; | |
| |
} | |
| |
else | |
| |
{ |
And add this code anywhere inside the case ‘comment’:
PHP:
// GRAVATAR addition | |
| |
$grav_url = "http://www.gravatar.com/avatar.php?gravatar_id=" . md5 ($Comment->author_email) . "&default=" . urlencode ("http://yourblogurl.com/rsc/img/blank.gif") . "&size=36"; | |
| |
echo '<img style="float:right;margin:3px" src="'.$grav_url. '" alt="Gravatar" />'; | |
| |
// END GRAVATAR addition |
Replace the yourblogurl.com with your own blog url.
On an unrelated note, your Digg button is slowly down page loads seriously.
Thanks for catching that Hari, I'll fix it later today.
I have a preliminar version of Fickr Photo Dropper working in b2evo. Do you mind to test?
Thank you!
You can try: http://b2evolution.waltercruz.com/tag/photo+dropper:
Recent comments