If I enable Yoast´s Wordpress SEO plugin http://yoast.com/wordpress/seo/, anything buddypress related is vanished. Just shows background image.
Tried editing my header.php per @bowromir suggestion here http://bp-tricks.com/snippets/making-buddypress-compatible-with-the-wordpress-seo-plugin-from-yoast/ As I am using a child theme of Hybrid framework, did not find <title><?php bp_page_title() ?></title> but <title><?php hybrid_document_title(); ?></title> so I replaced the beforementiones statement with
<?php if(!bp_is_blog_page()){ ?>
<title><?php hybrid_document_title(); ?></title>
<?php } else { ?>
<title><?php wp_title('') ?></title>
<?php } ?>
with no luck. Any clues ?