If you change themes you will lose all the customization that your theme provides through that Cornerstone custom page builder (I assume this is your theme http://themeforest.net/item/x-the-theme/full_screen_preview/5871901)
I would suggest — because you have paid for the theme — that you go back to the theme developer and let them know that code in their theme is causing an error. The error message you provided shows exactly where the offending code is. It looks as though your theme has some additional customizations applicable to BuddyPress specifically.
If the theme author won’t help, and you have FTP access to your site’s server, you could go in under public_html/DRSTEPHANIEDANIEL.COM/wp-content/themes/x/framework/functions/global/plugins/buddypress.php and see what is on line 427 of that buddpress.php file that might be screwing things up.
I need your help!
I have a wordpress-site with both the buddypress plugin and the Ultimate Member plugin installed. The problem is that i would like to use only the group portion of buddypress and the rest from Ultimate Memeber.
The problem is that they both use the same user account, they do have diffrent profiles. I could disable the profile page, but this is still leaves a problem for my Group page where if you would click on a user’s name it would try to go to said profile. I would want it instead of going to the buddy press profile page, it would go to the ultimate member page.
How would i achieve this or is this even possible?
Many thanks
Gjosse Zijstra
Yeah sounds like it could be your database preserving referential integrity. i.e. Can’t delete a profile group unless all fields belonging to that group have been deleted first.
Check what’s going on by looking at your database. This may help:
BuddyPress Database Diagram
Yeah something weird is going on as when I create a new field it automatically has the data of a previous field I have deleted.
I am guessing when I segmented the fields it caused an issue with the delete process. It deletes from admin panel but sometimes it says “there was an error deleting” so I guess part of the data remains.
I am going to have to get to grips with buddypress schema.
I want to have a Network where the registered users can get their own sites (That I have done already by installing WordPress Multisites)
Now I want to have BuddyPress so all the registered users can use Groups, Messaging and more.
What I’m not sure, where should I activate Buddypress? On the Network (site.domain/wp-admin/network/plugins.php) or only on the Main Site (site.domain/wp-admin/plugins.php)?
I also want (And had problems getting this to work before) that on the main site, for example when someone goes into the Activity page, you can not only see there when they create a Group, or publish some message, but also if they posted an entry on theirs sites, that shows also on that Activity page.
Hope you can clarify my what steps to follow to get a site like that working.
I just realized the BuddyPRess option in Screen options was unchecked. I got it working now.
I can’t create a profile field for every possible group.
You can create a custom profile field by extending BP_XProfile_Field_Type.
That custom field could pull in the group names for that member and allow them to enter a name per group name.
You can filter the member name by using the filter hook in bp_member_name(), found in:
buddypress\bp-members\bp-members-template.php
How, when and why you apply that filter is up to you.
The same filter may not work for bbPress, but they probably have something equivalent.
Hi there,
I have an up-to-date BuddyPress site and a member sent me a friend request, but the email keeps coming through every few minutes. I now have almost 100 friend requests from this person. I tried accepting her as a friend, but even then, it keeps sending emails.
Help would be greatly appreciated!
Thanks,
James
Well, group meta allows meta data to be applied to groups. I’m thinking along the lines of data in the usermeta table which is only consumed by specific groups. This might be expressed as a name/value pair in the profile. So with reference to my original example, a GroupName profile value would include:
school:Robert
home:Bobby
coolGame:Zarcon
The BuddyPress Profile Shortcodes plugin allows for custom fields and related shortcodes to be used. This is much closer to my needs but still not quite there. I can’t create a profile field for every possible group. Ideally there would be a pulldown of groups to which the user belongs, where they can enter the name they wish the use for that group, and the group/name pairs would be displayed in a grid.
Now I’m thinking one of the better user meta plugins could handle that. But I would also need to customize it so that there can only be one WP user with a specific value for a specific group. This is a unique key per group, as some reference to @Bobby can’t apply to more than one person, but the @Bobby in one group can be different from @Bobby in another group.
On the client side, I would then need to modify bbPress to get the user name that’s specifically for the current group, rather than using wp_get_current_user()->display_name or whatever it has there. For example:
get_user_meta($user_id,’groupName_’.$group_id,true)
or better
get_user_meta($user_id,’groupNames’,false)[$group_id]
Actually I’d rather abstract all requests for a user name to a function which can then be replaced with custom code just once. I don’t suppose anyone has already done that, or it’s been proposed as a BP/BBP enhancement?
I’m a noob with coding into WP, haven’t touched BP/bbP, and know little about the APIs, so please bear with me on the syntax and other specifics and focus on the concepts. Thanks.
The more I try to flesh it out above the more it seems possible for me to do this myself. But it would be really helpful if someone has already done it. Or if someone with knowledge in this area can see a more direct line from an exiting plugin to the solution I’m describing.
Thanks for your time!!
Fatal error: Call to undefined function bp_get_activity_directory_permalink() in /home4/ab49180/public_html/DRSTEPHANIEDANIEL.COM/wp-content/themes/x/framework/functions/global/plugins/buddypress.php on line 427
Hi,
I really like buddypress and bbpress and all the features and modules they offer.
But I’m having a lot a problem finding accurate information about the code and how to do stuff.
I think a good cleanup and update of your documentation to make sure it is clear and easy to navigate would be a must. I keep finding a lot of old information about old version I don’t care about. And I don’t get how that menu work…
Another thing that bothers me is how you assume things instead of giving the webmaster more options.
E.G. That whole mess about the name field. It is almost impossible to change it back to nickname or to first name and last name or to just remove it. I think that there should be a way to control that field and assign it to a WordPress field. E.G. First name = WordPress First name and same thing for last name. Or to use Nickname instead as the display name. I’m building a gaming community, Gamers do NOT want their real name on the internet. And it is a pain to make sure it does not happen.
Also, It would be nice to have more control over who can see private and hidden forum. I used AAM to create 2 new user groups called Member and Admin but Buddypress and BBpress have there own permission system and I can’t make it work like I would like.
So in short:
– Clean up the codex / documentation
– Stop assuming things and give more control to the webmaster
– Custom member groups with granular permission
– Member page made of shortcodes
Thank you for reading my feedback
This works:
/***
* @var $bp BuddyPress
*/
global $bp;
Hey guys,
This is a known issue. See #6360 for more info.
(@codemonkeybanana I think you already found it) 🙂
Creating some custom fields won’t be enough.
afaik – you want separate and multiple ‘sub’ identities for each user.
That won’t be easy, but even so, creation of sub-identities is only part of the issue.
Parsing out which sub to use in which situation for content creation and display will be a tangle.
But take a look at group meta
URGENT PROBLEM!
I am having the same problem. I just logged on as the administrator to delete a user and the only user that showed up on the list was myself. The wierd thing is that when you look at the user count for all users, all users are there, however, clicking on that link still only brings up my user. I deactivated all of my plugins and one by one began activating them again. I got to the BuddyPress Version 2.2.3.1 and activated it and that is when I could duplicate the problem. This is only recent and I am sure that I did an upgrade recently. Sunday was the last time I logged in and there were no problems at the time. For the time being I have left the rest of my plugins deactivated and I would be happy to give you access if you need a password or username to get in. My site is http://www.putznutzcabinfever.com. For the time being, and for security purposes I will be reactivating a spam plugin and one that limits the menu. These are STOP SPAM and ULTIMATE USER. So, you can go back to deactivating all plugins when you look into it. I just don’t want to allow signups or public access to some of the pages.
If I can help in any way, I will be happy to.
Update:
I have to add I have a set up of Buddypress/bbpress on another site on same server & sharing same account (Justhost.com) & there is no issue, with those pages. WordPress & ALL used plugins are up-to-date.
Regards
Hi
It is over a month since I requested for some assistance, but probably either my case is unusual or has been overseen.
I remembered this, right after writing a newly registered person to login & if they want edit their profile by going o the link top-right. However as mentioned in the original post, ALL these links lead to a page not found error.
As said, I have no link-related errors outside buddypress/bbforum (where they told me the issues are bbpress & not bbforum-related & referred me here).
Links not working include /members/abc/, /groups/xyz/ & /members/abc/profile/.
As mentioned, I have no idea when the the problem started or what triggered it.
I would appreciated some help as these links not working defeats the purpose of Buddypress.
Kind regards
After copy/pasting bp-themes/bp-default/activity/activity-loop.php into my working theme at [my-theme]/buddypress/activity/activity-loop.php, the activity is now showing up empty. Layout remains but with no activity.
NOTE: No changes have been made to the activity-loop.php page when copying/pasting.
I am running a multisite with buddypress.
The way I am operating it is that each buddypress network acts as its own separate network. I have used BP multi network plugin and made a few manual changes.
Everything was working fine apart from being able to add a user and then activate them.
On sub-site it is not possible to view “users.php?page=bp-signups”. I get the generic “you do not have sufficient permissions to access this page” error.
On network admin I can view “users.php?page=bp-signups” but when I try to take action “/users.php?page=bp-signups&signup_id=2&action=activate” I get the same error.
I enabled debugging but there was no warnings being generated.
To debug this I have deleted all buddypress tables and plugins and started from scratch. I have identified that this error appears as soon as I define BP_ENABLE_MULTIBLOG in wp-config.php. If I disable this then it will work.
I am using super admin account, wordpress 4.2.2 and most recent buddypress. Have tested on linux and IIS and get same issue.
Can anyone give me some advice on how to fix this?
Hello,
I fairly new to BuddyPress but I love it so far! I’m in the process of speeding up my site and I was wondering if you could help with this message that I am receiving from Google Pagespeed:
Remove render-blocking JavaScript:
-http://everydaynightlife.com/wp-content/plugins/buddypress/bp-templates/bp-legacy/js/buddypress.js?ver=2.2.3.1
-http://everydaynightlife.com/wp-content/plugins/buddypress/bp-core/deprecated/js/jquery-scroll-to.min.js?ver=2.2.3.1
-bp-core/js/jquery-cookie.min.js?ver=2.2.3.1
-bp-core/js/jquery-query.min.js?ver=2.2.3.1
-bp-core/js/widget-members.min.js?ver=2.2.3.1
-bp-core/js/confirm.min.js?ver=2.2.3.1
Is there any way around these? Are they really slowing my site down? Any help would be appreciated.
Buddy Press version 2.2.3.1, WordPress version 4.2.2
Thanks
I’ve been having issues with my BuddyPress/bbPress features not displaying on the site, since I customized my theme (Nictitate by Kopatheme). Today, I cannot even access the wp-admin login page or the dashboard via any page, and therefore cannot edit my site, as you must be logged in to create content. No error or 404 message comes up on the page, rather, it says “Log In” at the top of the page but has no fields to enter username and password.
Other troubleshooting threads recommend turning off certain plug-ins, but I can’t do any of these things without access to the dashboard. I fear it’s something to do with theme customization. The other BuddyPress generated pages behave the same way. They show up in the site menu, but have no content on the page other than the title. Please help!
After typing in “www.myharbors.com/wp-admin/” which is how I have always logged into the dashboard before.
Now I get this: http://www.myharbors.com/login/?redirect_to=http%3A%2F%2Fwww.myharbors.com%2Fwp-admin%2F&reauth=1
Hello,
I’m going to move a group from Yahoo to Buddypress, and while I ran into some articles on how to import members to Buddypress, I can’t find anything about old posts. Is there a way to do this?
Thanks in advance for any help!
Elaine
Hi
First of all Gr8 job you guys have done with buddypress!
In the members/profile there is these arrows what dosen’t do anything.
How do i get rid of them and are there any reason for them to be there?
And is there any CSS themes one can get of a nice looking buddypress?

Hi,
I am having some trouble working out how look at bp method declarations. I want to do this so I can see if there are any helpful comments in code.
For instance I want to use bp_nav_menu(). The documentation says there are various filters and you can use a navwalker but it doesnt say how to use it or what filters it uses so I need to look at code but when I search the buddypress folder for bp_nav_menu it returns no ocurrences.
My IDE says all BP function don’t exist so I guess they are either inside a namespace or a class that is brought into scope at runtime. Is there anyway to call functions with fully qualified path or to know what the fully qualified path is?
Any tips to navigate the code appreciated.