Location: USA
-
Join the team: http://translate.wordpress.org/getting-started
Dev area: http://wppolyglots.wordpress.com/
BuddyPress-specific: http://translate.wordpress.org/projects/buddypress/dev -
pcwriter posted on the forum topic Show BP Admin Bar while in wp-admin ONLY and hide it in the rest of the site. in the group How-To and Troubleshooting:
Add the following snippet to your theme’s functions.php file:
function remove_adminbar_from_mainsite() { if('BP_ROOT_BLOG') remove_action( 'wp_footer', 'bp_core_admin_bar', 8 ); } add_action('wp', 'remove_adminbar_from_mainsite'); -
r-a-y posted on the forum topic How can I customize a special group? in the group How-To and Troubleshooting:
Use BP_MEMBERS_SLUG as it’s a constant.
eg.
echo 'This is my cool ' . BP_MEMBERS_SLUG . ' slug for members';