`function bp_profile_homepage()
{
global $bp;
if(is_user_logged_in() && $_SERVER==’/’)
{
wp_redirect( $bp->loggedin_user->domain );
}
}
function logout_redirection()
{
global $bp;
$redirect = $bp->root_domain;
wp_logout_url( $redirect );
}
add_filter(‘get_header’,’bp_profile_homepage’,1);
add_action(‘wp_logout’,’logout_redirection’);`
by the way I am testing it in localhost
maybe that causes problem
I need your help again.
For my design I needed to use div instead of list(ul) for displaying activities.
instead of this
` ul.activity-list .red { background: #f00 }`
I have
` div.activity-list .red { background: #f00 } `
But filter not working now. I couldn’t fix it by myself