Buddypress menu – show tab not only to user
-
Hello,
I added a new tab to the menu. I use the following code in bp-custom.php
Now this tab can only be seen by the user and is not public. How can I set this tab to be seen from everyone?Thanks for your help
function bpfr_menubar_link() {
global $bp;$bp->bp_nav[$slug] = array(
‘name’ => ‘Fotos, Videos’,
‘slug’ => ‘super_link’,
‘link’ => ‘http://…..’,
‘css_id’ => ‘super-link’,
‘position’ => 30
);
}
add_action( ‘bp_core_new_nav_item’, ‘bpfr_menubar_link’, 999 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.