I’m working on the User Profile page and it looks like there might be an issue with bbp_is_user_home().
Issue 1: When I’m not signed in I’m still seeing the (Edit) link next the username. The template calling that is bbpress/user-details.php in which bbp_is_user_home() calls <?php _e( '(Edit)', 'bbpress' ); ?>
.
Issue2: In user-subscriptions bbp_is_user_home() seems to be doing the same thing: <?php bbp_is_user_home() ? _e( 'You are not currently subscribed to any topics.', 'bbpress' ) : _e( 'This user is not currently subscribed to any topics.', 'bbpress' ); ?>
is printing the first message “You are…” instead of “This user…”. Again, I’m not logged in and I’m seeing this for each user I view not just my own previously logged in account. (This same situation happens in user-favorites.php.)
Are others having the same issue? How are you dealing with it?