You can use BuddyPress Member Types Generator plugin to create members types.
Or use BuddyPress Member Types plugin, they have a bit different functionality. The 2nd one seems to have more features.
Different “Types of feeds” is not easily achievable, only with custom coding.
Custom login and registration pages – lots of solutions for custom login. Custom registration page is limited to BuddyPress, there is no plugin, that can do anything with it. You will need to dive into templating and custom styles.
Upon further reading, my issue was occurring with the BuddyBoss Reorder Tabs plugin.
I have contacted the developer. My apologies for bothering you @r-a-y
Hi all,
I was wondering if anyone else has experienced the following error after updating to BP 2.6.0 on WP 4.5.3?
PHP Fatal error: Call to a member function get_primary() on a non-object in /dom16030/wp-content/plugins/buddypress/bp-core/classes/class-bp-core-bp-nav-backcompat.php on line 220
The error seems to be triggered when I am in the admin. It occurred there on Sunday morning while refreshing a page in the admin panel. I restored from the previous day’s backup and signed in as a different user which was working as usual on the front end. It wasn’t until I signed in as an admin again and went through a refresh in the admin panel that it triggered the same error. The result of the error, locks me out of the site (white screen of death.)
I am using the OneSocial theme by BuddyBoss and have contacted them as well. I should also note that my installation of BP is on a MultiSite Network hosted with Pagely and the rest of the sites (13 total) on the network without BP installations are running fine (front end and admin.)
The specific site is https://tribe.noyearslost.com (I have since deactivated BP.)
Perhaps you might be willing to have a look @r-a-y if this isn’t too pesty. Otherwise, I’ll be patient, but any help or insight would be greatly appreciated.
I’m getting a blank page for all groups, and some topics (I can’t see a pattern yet to which topics are blank). It’s so blank that there is nothing in “view source” at all (usually when it’s a theme problem I get something there, like basic body/html tags – just not enough to build a page).
I’m getting ready to test for theme issues. But I definitely determined that a rollback to the previous version fixes the problem.
EDIT: I should mention that it happens in TWO themes: BuddyBoss and Zerif Pro. So I suspect it’s a BP or plugin problem, not theme.
I realize, however, that this could be a different problem than you have reported, so I will just watch this thread, and start a separate one if my problem persists.
I would like them to be able to Register as well as Log in using their Facebook account
use plugin wordpress social login..works like a charm
I want users to register for blogging
you want your users to blog from the bp frontend? if yes you need to use the following paid plugin
BuddyPress User Blog
on buddyboss @djpaul they were excellent when they came up with the buddyboss theme…now they got multiple themes and plugins..and if you would check their support forums you would see the user feedback on their new themes now including the boss theme as well
I’m running into this same error when trying to delete the cover photo. Any luck with this?
I’m pretty sure this worked before — not sure if an update was done on a plugin that may have changed this. Or the BuddyBoss theme?
I have Boss from buddyboss and it is just great (I also have the wall + photos plugins).
Very much recommended.
My favourites are at buddyboss; they look great and are coded really well – http://www.buddyboss.com/themes/
buddyblog is a paid plugin…you need to ask buddyboss guys…raise a ticket with them
EDIT: For ours, we deactivated BuddyBoss Wall and the pages showing activity per user/profile now load.
Regrets am not a coder.. Try wall plugin of buddyboss…else check this
Me and My Friends Only Activity Stream
The author bp-help has done some good work
just bumping this to top….
Julia, are you also running BuddyBoss or any of the other plugins I listed by chance?
Hi there! I hope you can help at least point me in the right direction. I assist with operations of a membership-based site that runs BuddyPress. Recently, the email notifications for @ mentions and replies on wall posts have stopped working, potentially after some updates were run (by the site owner). I cycled the “Notifications” setting in the BuddyPress settings to no avail. BuddyBoss theme folks gave us no help. If there is something I am missing somewhere, or a direction to look to troubleshoot, I would be ever so appreciative!!!!! Thank you in advance!!!!!
Here are our details:
Wordpress 4.4.2
Running BuddyBoss Boss.Child theme
Plugins:
Akismet 3.1.5
bbPress 2.5.8
TinyMCE Widget 2.2.8
BuddyBoss Media 3.1.9
BuddyBoss Wall 1.2.7
BuddyPress 2.5.2
BuddyPress Edit Activity 1.0.7
BuddyPress Follow 1.2.2
BuddyPress Forum Editor 1.0
BuddyPress Global Search 1.1.4
i2SDK 3.5
Memberium 2.46.16
Memberium Path Protect .1
Page Builder by SiteOrigin 2.4.6
QueryMonitor 2.10.0
SiteOrigin Widgets Bundle 1.5.11
Hi @neijisly, I tried your updated code but had no success with it. Thank you for trying though!
Hi @shanebp, your code works great. Thank you! I don’t have any other plugins apart from BuddyBoss Global Search and BuddyBoss Edit Activity. So unless your code affects the functioning of another part of BuddyPress, then there shouldn’t be any conflicts.
While looking at messaging I have just noticed that Private Messages don’t send when you select a recipient via the autocomplete dropdown (get a failed message saying username is incorrect). However if you manually type out the same username, the message sends fine. I haven’t yet searched the forum on this matter though so there may already be a solution out there. I’ll have a look.
@mrunal2989 Already using BuddyBoss…
But I want to Create page functionality in our website that user can Add own page and other user can like that same like facbook…
@mdbhojwani Google BuddyBoss theme.. They have amazingly crafted theme that looks similar to FB
The activity filter can be removed from the template.
Ask BuddyBoss which one you should adjust and how.
BP does not provide a ‘wall’ tab.
You are using a custom plugin or theme – perhaps BuddyBoss?
Have you tried asking them>
You must check out BuddyPress Member Types.
BuddyPress Member Types lets you create and manage member types without having to code. You can also allow users to choose their Member type while signing up and also through their profile options.
Try creating it as a function such as something like below or download the free plugin BuddyPress Reorder Tabs
http://www.buddyboss.com/product/buddypress-reorder-tabs/
function re_order_my_tabs() {
global $bp;
$bp->bp_nav[‘Activity’][‘position’] = 30;
$bp->bp_nav[‘profile’][‘position’] = 20;
$bp->bp_nav[‘notifications’][‘position’] = 10;
$bp->bp_nav[‘messages’][‘position’] = 80;
$bp->bp_nav[‘friends’][‘position’] = 70;
$bp->bp_nav[‘groups’][‘position’] = 60;
$bp->bp_nav[‘media’][‘position’] = 50;
$bp->bp_nav[‘settings’][‘position’] = 40;
}
add_action( 'bp_setup_nav', 're_order_my_tabs', 999 );