Re: admin bar logo
There are two filters for the admin bar logo that you can take advantage of:
In your bp-custom.php file, create one if you don’t have one, in /mu-plugins put this:
function my_admin_bar_logo($content){
return “<your admin bar logo path>”;
}
add_filter(‘bp_admin_bar_logo_src’, ‘my_admin_bar_logo’);
function my_admin_bar_alt_text($content){
return “< your admin bar alt text>”;
}
add_filter(‘bp_admin_bar_alt_text’, ‘my_admin_bar_alt_text’);