Not that I am aware no, it’s part of the new merging with the WordPress admin bar.
Yes, it’s possible.
Add the following code snippet in your /wp-content/plugins/bp-custom.php:
`add_filter( ‘bp_use_wp_admin_bar’, ‘__return_true’ );`
Ooo there you go – thank you that’s one I’ll be adding to my snippet pile myself
What if you don’t have a bp-custom.php in that directory path? I tried creating it, but it stuck the actual code into the header of my front page.
Did you create the file and name it bp-custom.php and put it in the plugins directory? If you have not then do that and copy and paste the below code inside that file and make sure you save it. Here is the code:
`<?php
// hacks and mods will go here
add_filter( ‘bp_use_wp_admin_bar’, ‘__return_true’ );
?>`
If you haven’t create a file like this before, you need to make sure you have the php tags before and after the snippet:
`<?php
add_filter( ‘bp_use_wp_admin_bar’, ‘__return_true’ );
?>`
works
thnx
Well half works the notification area isn’t exactly the same :
http://chrysmotion.com/social/
but looks great
thnx