The plugin i posted was a guide line, place this somewhere within your theme: http://pastebin.com/JLjMynR0
If the user is logged in, it will show up. It is a link to the users @Mentions
unfortunately none of them worked 
WP themes which are updated to latest WP versions like Twenty Ten and Twenty Eleven plus BuddyPress’ own bp-default theme have custom menu functions you’ll find in Appearance > Menus.
Just create a link named “Community” and add whatever links you want under it.
e.g. for bp-default theme or its child theme https://codex.buddypress.org/extending-buddypress/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
@mercime, I am using the standard default template and have gone into the general settings of wordpress and checked the box for anyone to be a subscriber. Still nothing.
@hornet1968 if you’re using a WP theme, you also need to install/activate the BP Template Pack plugin and go through Appearance > BP compatibility process. We have a list of “template-packed” WP theme near the bottom of this page https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
User levels were replaced by roles in WP 2.0, and were deprecated in 3.0 — so, checking wp_user_level and such like shouldn’t be relied on
https://codex.wordpress.org/User_Levels
Okay guys I went to the wordpress settings page and check the box which says anyone can register and now i go this nice side bar on my site as it is in the picture below which allows my front-end users to login and register but the problems I am facing with this is that if user types the wrong password, then wordpress takes them to it’s old fashion page where they see that login box and it says I am not accepting the password and my users from there have to reset password and so on. So my objectives are as follow:
Sorry for not being so clear but my objectives are:
1.) add a reset username/password fields to appear in sidebar instead of going to wp-login page.
2.) if the username/password were wrong, link it back to my own page and saying its wrong instead of going to wp-login page.
Here are the links to my pictures which explains my problem.
Image 1: http://imageshack.us/photo/my-images/825/picture1whatididwas.jpg/
Image 2: http://imageshack.us/photo/my-images/401/picture2whatiwantis.jpg/
Image 3: http://imageshack.us/photo/my-images/607/twant.jpg/
hi,,
global $current_user;
get_currentuserinfo();
$userLevel = $current_user->wp_user_level;
switch ($userLevel){
//https://codex.wordpress.org/Roles_and_Capabilities
case 0: $_SESSION = 2; break; // member
case 1: $_SESSION = 2; break; // Contributor
case 2: $_SESSION = 1; break; // author
case 3: $_SESSION = 1; break; // author
case 4: $_SESSION = 2; break;
case 5: $_SESSION = 2; break;
case 6: $_SESSION = 2; break;
case 7: $_SESSION = 2; break;
case 8: $_SESSION = 0; break;
case 9: $_SESSION = 0; break;
case 10: $_SESSION = 0; break; // admin
default: $_SESSION = 3; // guest
}
and read this https://codex.wordpress.org/Roles_and_Capabilities
This was from a plugin I developed for a site, you should find just about everything you need in there, and if not have enough of an understanding to fill in any ones that aren’t covered: http://pastebin.com/xC1jd4vv
also check out: http://wpmu.org/daily-tip-how-to-add-all-navigation-links-to-the-buddypress-admin-bar/
and: https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
next time wait a day, I’d say that’s the average response time, if it’s sooner, be grateful!
Are you being serious? You are asking just 1 hour later, why no-one has responded to your question?
You can’t add conditional menus / menu options via the WordPress menu settings in wp-admin.
If you want conditional menus, and those with PHP driven dynamic links (e.g. changing for the current user), you will have to code them in your header / navigation templates.
Are you using a plugin to create your user levels? If so, which one? WordPress supports roles and capabilities for users by default, but doesn’t have numeric levels.
If s2member have a look at their documentation for if queries on member level.
@b1gft there are a couple of simple ways to go about deleting “freshness” from group forums
1. Simplest of the rest -> Just add the following at the bottom of your theme’s style.css file
`span.time-since { display: none !important; }`
or 2. Copy over https://buddypress.trac.wordpress.org/browser/tags/1.5.6/bp-themes/bp-default/forums/forums-loop.php to your themes /forums folder, open it up and delete line #85
or 3. filter bp_the_topic_time_since_last_post in functions.php
Specs
1. WordPress latest
2. Buddypress latest
3. Frisco theme
4. Use bbpress 2.0 for group forums
5. Use “GD bbpress Tools” plugin to have a signature. (its sad that bbpress doesnt have such a basic feature)
For the second time in my entire life, I had a look at PHP and CSS. I hope I can cope with. Till then which is the “Hitchhiker’s Guide to the Galaxy”?
Why nobody is helping me?
Hello ,
My site is running with one of the mysitemyway buddypress themes and i asked this question there but they told me to ask it here.
I have disabled the Buddypress toolbar and i want to add the user related links in the main menu. i know how to add it from wordpress panel but for example if the user is logged in i want to show some logged in users related links and if the user is not logged in i want to show sign-up and log in link.
Thanks for the reply @karmatosed
On the Changelog for the Suffusion BuddyPress Pack on the WordPress page it says they’ve added support for BuddyPress 1.6.
https://wordpress.org/extend/plugins/suffusion-buddypress-pack/changelog/
You can adapt a theme to work with BuddyPress, your first port of call for that is to use this https://wordpress.org/extend/plugins/bp-template-pack/
Hi, have you checked if the latest pack on Suffiusion supports the latest WordPress/BuddyPress? I see this:
WordPress 3.0 or higher
Suffusion 3.6.8 or higher.
BuddyPress 1.2 or higher
To me, that may be the issue is that it is not compatible. I’d probably suggest contacting the pack authors to confirm.
Hi,
I am a veteran WordPress user and am building my first BuddyPress powered site. I have most of this figured out; however, I need help/advice on group level features.
On some of my groups, I need the ability to share information such as static pages and files. So my three questions are:
Page
Can a standard WP page be made available within a group. I know I could use the GroupBlog plugin and post information as posts, but being able to serve up some pages would be great.
File Repository
I need a place where group members could share files. I have seen this on several site. Not sure if it is custom code or a plugin.
Group Level Menu
Assuming I can do pages and file area, how could I change the group menu bar to accommodate these new features.
Thanks in advance on any help with this!
Hi, @raminjan you can certainly achieve that, both making it yourself working at code level or (what I suggest) start with a plugin that achieves the “private community” functionality and set yourself a “front page” (you’ll use a modified version of the login page I guess
).
Here are some helpful links on how to do what you need:
http://wpmu.org/buddypress-news-create-your-own-private-buddypress-community/
http://www.1stwebdesigner.com/tutorials/buddypress-collaboration-system/
https://wordpress.org/extend/plugins/buddypress-private-community/
https://wordpress.org/extend/plugins/private-buddypress/
Hope it helps! cheers,
-JM
And if someone could be extra kind and create a trac ticket for this over at https://BuddyPress.trac.WordPress.org — be sure to link back to this discussion — I’ll be your BFF.
It’s straightforward to do in BuddyPress – @hotsitez has already pointed you to the basic function for echoing profile field values (which is also documented in member-header.php), and I’ve told you which files you need to look at.
As a PHP coder, you should be able to walk through those files to find the appropriate points in the code to hook actions in or modify your templates. You should also be able to search the BuddyPress codebase to find profile field functions you can call — start with the one @hotsitez gave you.
You can also look on the documentation (codex) area of this site for information about the profile field loop which may help you further – and point you to how base and other profile field groups are handled.
[Edit: and, if you want to learn about the action, filtering paradigm for development, you can find introductory articles on the wordpress.org codex]
Well, yes and no @hotsitez….
Here’s what I have:
I went into WordPress/BuddyPress via wp-admin — then navigated to Buddy Press > Profile Fields
On the Extended Profiles Fields page, I added a “Start Date” for our members to populate which is the date they started with our company. Then on the Base (Primary) tab on that page, I got my extended field positioned where I want it to display.
Perfect (so far).
Now what I want to do is apply some PHP to calculate how many months and years the person has been with our company and parenthetically display it next to the start date value on the member’s profile page in Buddy Press when people view a person’s profile.
How To Do That?
So where/how in member-header.php do I add that bit of PHP code? Note, I am a PHP coder, so I have no problem producing the code to make the calculation — I am not asking for that guidance. I simply need to know (a) what script/document file do I go to to add my code, (b) where in the page production stream in that script/document file do I add my code, and (c) how do I grab the start date value that is stored in the BuddyPress DB?
This maybe too complicated for Buddypress to do, but I am willing to give it a shot.
[Note: I toyed around with member-header.php per @hotsitez suggestion. The profile area that this script impacts is the upper “header’ area for a member. I am interested in getting into the flow of the Profile > Base page.]