wordpress 3.1. is out!!!


WordCast Team has written a fantastic blog post on WordPress 3.1 and have explained the new features nicely. Check it out to know more about WordPress 3.1. These new features will allow developers to extend and communicate with WordPress to develop rich content sites easily!
http://wordcastnet.com/2011/wordpress-3-1-released-wordcasts-ultimate-guide-to-whats-new/

Buddypress 1.6.4 Fix RSS feed title encoding problem (for Greek)


Are you having troubles in activity feed for buddypress and the feed titles aret displaying with false encoding ( see picture below) ? 

you can fix it with 2 ways.

1st Way and best

Use the plugin http://buddypress.org/community/groups/bp-rss-character-fixer/


 2nd way

By changing in the file /wp-content/plugins/buddypress/bp-activity/bp-activity-templatetags.php and in function bp_get_activity_feed_item_title () the line (~line 1030)
$title = trim( strip_tags( html_entity_decode( utf8_encode( $content[0] ) ) ) );

to this
$title = trim( strip_tags( html_entity_decode( $content[0] ) ) ) ;