Re: Renaming a page title
I think this should work if you create a new file called change-to-news.php and put the contents in it and then drop it in your /mu-plugins/ folder:
<?php
function change_to_news() {
return 'news';
}
add_filter( 'bp_home_blog_slug', 'change_to_news' );
?>
Hold on…that might now work. Looking now.
Trent