[Resolved] Still looking for a fix: Community Menu in the buddy/admin bar
-
WP 3.2.1 running BP 1.5 upgraded from 1.2.10
After not being able to figure out how to add just one html link to the buddy/admin bar, I found a snippet to add an html drop down menu. Adding the function to a bp-custom.php file.
The menu looks fine, it just doesn’t work and I’ve tried many different kinds of edits to the file to try and get it to work.
The file is:
<?php function pages () { global $bp; ?> <li><a href="http://www.mysite.com">Community</a> <ul> <li><a href="//www.mysite.com/activity”">The Stream</a></li> <li><a href="//www.mysite.com/blogs”">Members Blog Actvity</a></li> <li><a href="//www.mysite.com/members”">Members Directory</a></li> <li><a href="//www.mysite.com/groups”">Public Groups</a></li> <li><a href="//www.mysite.com/about/become-a-member”">Join</a></li> <li><a href="//www.mysite.com/about/contact”">Contact</a></li> </ul>
I really don’t want the word “Community” to be a link, but if I add it without the href, it breaks.
Any answers as to why this doesn’t work and how to make it work would be greatly appreciated.
- The topic ‘[Resolved] Still looking for a fix: Community Menu in the buddy/admin bar’ is closed to new replies.