@sygy88 it will need a couple of edits inside the core BuddyPress plugin, you can raise a feature request here https://buddypress.trac.wordpress.org/newticket
Hi there,
Got a weird error. In my custom theme header I try to call this function:
bbp_is_single_user_profile()
And I got the error:
Uncaught Error: Call to undefined function bbp_is_single_user_profile()
After some research this function is correct right? I want to check if you are on a member page, since every page has it’s own source of an header image. This case from the cover image of the member.
I use the latest version of WordPress and BuddyPress. Also there are no other plugins installed since it’s in development.
Thanks in advance.
Justin
Extra info: I tried the very simple plugin WPS Hide Login.
This works, but how can I change the buddypress main login URL? So that the domain name is pointing to the login adress. Now it is:
https://globehomeschool.nl/wp-login.php?redirect_to=https%3A%2F%2Fglobehomeschool.nl%2F&bp-auth=1&action=bpnoaccess
When there’s no solution for the error-message, maybe I can use a custom login-url? But how?
Hope there’s anyone out there with more knowledge than I have. 😉
Hi Eric,
Wordpress is built to be expanded using plugins, if you check wordpress.org you’ll find there are thousands of these. BuddyPress and bbPress are two of these plugins and they work really well together. As to whether users can create their own blog pages that is up to you and the permissions you assign but the functionality is all there.
Hello, I have been breaking my head with this little thing for a while, all I want is for the activity page to refresh automatically without having to click the “Latest Updates” button, something like Twitter, Facebook, etc. Is that possible or has not been implemented yet ??? I use WordPress 5.4 and BuddyPress 5.2.0
@peaco if you are checking for any website URL preview, it’s not inbuilt
BuddyPress have support for WordPress embeds by default
You can check here https://codex.buddypress.org/activity-embeds/
Hi,
I have a problem with the Buddypress menu. The menu of the theme is covering the buddypress profile part. Ctrl + F5 then fixes this for a short moment. Switching to another page leads to the same situation then again though. The theme is OceanWP in actual version.
To have the Buddypress menu half covered by the page menu is a bit unsatisfying. Is this a known issue? Does somebody have an idea how to fix it? Any help is highly appreciated.
Kind regards
Arunderan
Here a shot of the problem

Hi all,
Apologies for the post. I’m a wordpress/website creation/Buddypress novice and am struggling a bit to get all my plugins to work together. As such this post may not make complete sense as it’coming from a slightly confused place.
Basically what I’m trying to do is create a person to person marketplace.
I have a registration form (User Registration plugin) that I like and it also integrates with woocommerce which is a big plus. It also makes a User Registration MyAccount page which I was thinking of using as a profile page (as I can edit this). However, I like the messaging and friend capabilities of buddypress and want to incorporate that if possible (has lead me into some plugin conflicts).
So I had a few questions:
1) Could I assign the BP registration page as a page with User Registration shortcode?
2) Do you need to assign all the BP pages for BP to work?
3) Could another registration form be used to create a BP profile
4) Any suggestions as how I could achieve my goals by managing my plugins differently?
@pmanuel
you can try to paste following code in wp-config.php file just before the line that says ‘That’s all, stop editing! Happy blogging.’
define( 'WP_MEMORY_LIMIT', '256M' )
you can read more about it here.
https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
@pmanuel inside your WordPress install, log in via FTP or SFTP
and open wp-config.php
and find line
define( 'WP_DEBUG', false );
and replace it with following
define( 'WP_DEBUG', true );
@pmanuel you can turn on debug mode using the following guide
Debugging in WordPress
any error log will help to isolate the issue.
I’m using BuddyPress with Olympus child theme and Youzer. I don’t have an Activity Page under pages list. I have to go to the user profile and literally change the url to get to the activity page that is connected with the profile and the one that I can modify with Youzer. I downloaded BuddyPress from the WordPress plugin screen so I’m not sure on how to get the correct activity page back listed under my pages tab. I’m quite confident I messed this up. I just need help fixing it. Thank you!
The BP Maps for Members creates member maps based on data from the BP xProfile Location plugin.
And it includes support for the BP Profile Search plugin.
@chris98 At CodeCanyon, plugins like LetsPush and Smart Notification WordPress Plugin offers web push notification support for BuddyPress
I created an action that uses the messages_new_message function (any time a user gets a tag, they automatically receive a private message.)
Would it be possible to put a border around the message or make the font different? I would like to make these messages stand out a little from the other messages in a users inbox/thread by adding some styling. Below is the code I am using:
function send_message_to_student_113( $user_id, $tags_applied ) {
$tag_id = wp_fusion()->user->get_tag_id( ‘course tag 1.1.1’ );
if ( in_array( $tag_id, $tags_applied ) ) {
$args = array(
‘sender_id’ => 1,
‘thread_id’ => false,
‘recipients’ => $user_id,
‘subject’ => ‘Hello there’,
‘content’ => ‘You got a new tag! Congratulations. Please let me know if you need any help!’,
‘date_sent’ => bp_core_current_time()
);
$result = messages_new_message( $args );
}
}
add_action( ‘wpf_tags_applied’, ‘send_message_to_student_113’, 10, 2 );
I am using WordPress 5.3 and I am actually using BuddyBoss which is a fork of Buddypress.
Thank you! Simmi
@cmsplay there are a couple of plugins in WordPress repo to import the user from CSV and few of them have support for BuddyPress.
You can try https://wordpress.org/plugins/import-users-from-csv-with-meta/
@sanra84 you can check following
BuddyPress Links in WordPress Menus
You can add them as a dropdown menu which will display for logged-in users.
The following active BuddyPress Components do not have associated WordPress Pages: User Groups. Repair
I can not repair it.
When I want to create a group I klik add new group.. then I get to the sample page which is nothing.. so the component is missing.
how to solve this?
If you have better wordpress installed that might be worth turning off whilst testing, that’s the only plugin I know with those initials. As it’s a premium theme it would be worth contacting them for support..
Hi @imath first thanks for your reply.
As you can see from my code I have added to my first message, I am using an hook provided by WORDPRESS
https://codex.wordpress.org/Customizing_the_Login_Form
So correction of buddypress code should be simple and efective…
I have opened a new ticket in TRAC
https://buddypress.trac.wordpress.org/ticket/8277#ticket
I hope this issue can be resolved before release V6
As you say: “If it’s just adding a hook available in the /wp-login.php page then, why not”
😉