Search Results for 'buddypress'
-
Search Results
-
Any help would be appreciated. Trying to debug our site before going live and am unable to fathom this one out……
Version 10.2.0 on WordPress 5.8.4Warning call_user_func_array() expects parameter 1 to be a valid callback, class ‘BP_Nouveau_Object_Nav_Widget’ not found 1
wp-includes/class-wp-hook.php:303
Plugin: buddypressIs there a fix? or has the functions.php been corrupted?
Am somewhat of a newbie, so go gentle please
Many thanksTopic: Featured Members
How can i show in a widget featured members instead of last active?
Is there a widget or an addon ?
Sorry if it is stupid wuestion i ma new in BuddypressWordPress 5.9.3
BuddyPress 10.2.0Hi! youviralart.com uses BuddyPress 10.2.0. Itβs not possible to send email to members, it does not work and therefore email to reset password does not work.
It βs writtensa: Error: The email could not be sent. The site may not be configured correctly to send emails. Get help resetting your password.
How can I solve this problem?
ThanksHi everyone,
I have a perfectly working system with email confirmation from a LMS plugin called Masterstudy. Verification email is sent, on link click, the user is brought to his profile page and the new user is created.
Problem: as soon as I activate Buddypress, this doesn’t work anymore. The email is sent, but the link brings the user back to the login form (same url as profile page). No new user is created.
I can’t seem to find what the issue is, how can I troubleshoot? Any idea where the problem is?Wordpress Version: 5.9.3
Buddypress: 10.2.0
Issue tested with Twenty Twenty OneHello guys. I have a problem with buddypress shortcodes. Basically the shortcodes don’t work. I’m using WordPress and elementor with astra theme. Can someone help me?
( When I update the page, I see only the words and not the menus)
Thank you very much πI don’t know if required but I don’t have any plugins like contact form installed on my website)
Thank you very much again
Page caching is out (unless only active on static pages).
From what I’ve read, several BuddyPress guides advocate for object caching, and so I was about to setup Redis.
After looking a bit more, it seems object caching isn’t universally recommended. Some people are saying they experience issues with object caching, and the moderator here, shanebp, has stated several times against object caching:
shanebp: But, object caching for WP can cause issues with BP because the object is not refreshed on a reload or ajax call.
Even if you set the cache to refresh every few seconds, there will still be issues like the one you found.
And page caching is much worse.Is there any recommended means to cache without problems for BuddyPress? Or is the answer to just not cache at all and to pay more in more server resources to make up for it?
I’m about finished my site but have been holding off releasing until I get caching implemented correctly; for one, I do worry all those Xprofile searches are going to cause problems.
Hi,
I have a problem with friend private invitation messages.
Suddenly instead of appearing only the invitations sent by users.
All users are getting invitations from all other users. Even though none of them or only a few of them have sent the request.I have used the repair tools offered by buddypress but I haven’t got any result. I also deleted the rows with is_confirmed? 0 value from the “_bp_friends” table. But the problem persists.
How can fix this?
Topic: No Invitation Link
Hi there,
I have made a fresh installation of a theme called Aardvark (https://themeforest.net/item/aardvark-buddypress-membership-community-theme/21281062). The theme works fine and I have set up a group as the main WP admin.
However, when in the main group homepage, I don’t have the invite members link to invite other members.
I have been in contact with the theme developers and they have told me that this is a BuddyPress issue and I need to ask for help here.
Does anyone know why the invitation link is missing//
Many thanks!
hello, I’m trying to hide an activity update that appears on the feed which says “posted a new activity comment”. I tried using the buddypress activity filter plugin but there’s nothing on the plugin to hide new comments from the activity feed
My buddypress site has a database that is now over 7 GB.
I’m moving the site to a new server as it’s getting pretty slow and wondering what if there are things I could do to make it more efficient?
It’s been tracking activity since 2009 – any way to trim that to just past few months?
(I already block most spiders from paginating through that via robot.txt)I occasionally get crashed tables, and the current server fails for memory problems if I run a repair DB via command line – so it must be repair single table to make it work – (DB too bit for me to use phpmyadmin as well which sucks)
Should I consider splitting the site being hosted on one server with files and then move the DB to a separate web server or something?
Do I need to have a system that can dedicated 8GB or Ram just for the DB or something to make it better?
Maybe the new server move will be better – the old server is stuck on older centos/php – I was planning to move to a debian box with nginx – but read some docs this week that make it look flimsy for doing a multi-site that way perhaps. Another distro and caddy perhaps?
Anything else I should consider to make it run better? Any advise would be appreciated.
Hello all,
I’m working in a custom theme in wordpress. I’m getting an error on page /register. It is a blank page and sends directly to the buddypress template php file.
The fields are all there, but it shows a critical error. Anyone have an idea as to what I can do to solve this?
Thanks
I encountered a strange behavior: in a WP 5.9.3 / bbPress 2.6.9 / BP 10.2.0 environment, when logged out, when leaving ANY page I get the JS warning “Leave this site? Changes that you made may not be saved.”
I took the old path of deactivating all plugins and activating them one by one. The culprit was BuddyPress.
Furthermore, I found out that changing BP template pack to “Nouveau” instead of “default” solved the warning issue.
Now, my problem is solved, but I have no explanation. Maybe someone could come with an answer to that…—
Theme: GeneratePress
Builder: Elementor ProHi all, I am new to buddypress and my coding skills are almost nule. I am sorry. So far I have been able to set up few things in my website but I cant find an option to hide some large tags (Base and other H4 tags) from users profile. I am using woostify theme (child) and everything is updated. I need help. Thank you !

Topic: Join group ajax not working
I’m getting an admin-ajax 403 error when clicking the Join Group button. It seems to be the switch case in the functions. It seems to be completely ignored somehow. Logging within any of the cases returns nothing at all. Also a quick note… it’s not every group. It’s only on random ones
function bp_legacy_theme_ajax_joinleave_group() { if ( ! bp_is_post_request() ) { return; } // Cast gid as integer. $group_id = (int) $_POST['gid']; if ( groups_is_user_banned( bp_loggedin_user_id(), $group_id ) ) return; if ( ! $group = groups_get_group( $group_id ) ) return; // Client doesn't distinguish between different request types, so we infer from user status. if ( groups_is_user_member( bp_loggedin_user_id(), $group->id ) ) { $request_type = 'leave_group'; } elseif ( groups_check_user_has_invite( bp_loggedin_user_id(), $group->id ) ) { $request_type = 'accept_invite'; } elseif ( 'private' === $group->status ) { $request_type = 'request_membership'; } else { $request_type = 'join_group'; } // NOTE: WHY IS THIS BROKEN?!!? switch ( $request_type ) { case 'join_group' : if ( ! bp_current_user_can( 'groups_join_group', array( 'group_id' => $group->id ) ) ) { esc_html_e( 'Error joining group', 'buddypress' ); } check_ajax_referer( 'groups_join_group' ); if ( ! groups_join_group( $group->id ) ) { _e( 'Error joining group', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button leave-group" rel="leave" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'leave-group', 'groups_leave_group' ) . '">' . __( 'Leave Group', 'buddypress' ) . '</a>'; } break; case 'accept_invite' : if ( ! bp_current_user_can( 'groups_request_membership', array( 'group_id' => $group->id ) ) ) { esc_html_e( 'Error accepting invitation', 'buddypress' ); } check_ajax_referer( 'groups_accept_invite' ); if ( ! groups_accept_invite( bp_loggedin_user_id(), $group->id ) ) { _e( 'Error requesting membership', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button leave-group" rel="leave" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'leave-group', 'groups_leave_group' ) . '">' . __( 'Leave Group', 'buddypress' ) . '</a>'; } break; case 'request_membership' : check_ajax_referer( 'groups_request_membership' ); if ( ! groups_send_membership_request( [ 'user_id' => bp_loggedin_user_id(), 'group_id' => $group->id ] ) ) { _e( 'Error requesting membership', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button disabled pending membership-requested" rel="membership-requested" href="' . bp_get_group_permalink( $group ) . '">' . __( 'Request Sent', 'buddypress' ) . '</a>'; } break; case 'leave_group' : check_ajax_referer( 'groups_leave_group' ); if ( ! groups_leave_group( $group->id ) ) { _e( 'Error leaving group', 'buddypress' ); } elseif ( 'public' === $group->status ) { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button join-group btn" rel="join" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'join', 'groups_join_group' ) . '">' . __( 'Join Group', 'buddypress' ) . '</a>'; } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button request-membership" rel="join" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'request-membership', 'groups_request_membership' ) . '">' . __( 'Request Membership', 'buddypress' ) . '</a>'; } break; } exit; }Hi,
I have a big Problem.
I used the BuddyPress Version 10.2.0 Plugin in combination whith Ultimate Member Version 2.3.2 and bbPress Version 2.6.9. I think this combination is a little bit difficult but it finaly worked well.I just changed some settings in the BuddyPress and then i got this Error:
Fehler-Details
==============
Ein Fehler vom Typ E_ERROR wurde in der Zeile 349 der Datei /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php verursacht. Fehlermeldung: Uncaught ArgumentCountError: 3 arguments are required, 2 given in /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php:349
Stack trace:
#0 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php(349): sprintf()
#1 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(307): bp_core_activation_notice()
#2 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters()
#3 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/plugin.php(474): WP_Hook->do_action()
#4 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-actions.php(120): do_action()
#5 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(307): bp_admin_init()
#6 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters()
#7 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/plugin.php(474): WP_Hook->do_action()
#8 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-admin/admin.php(175): do_action()
#9 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-admin/plugins.php(10): require_once(‘…’)
#10 {main}
thrownAnd no – of corse I dont have an up to date back up π
What can I do to fix the problem?Great thaks to all hwo want to help me
WordPress-Version 5.9.3
Aktives Theme: ColorMag (Version 2.1.2)
Aktuelles Plugin: BuddyPress (Version 10.2.0)
PHP-Version 8.0.17Hello everyone,
I’m wondering if it’s possible to change the menu icons for custom links using BuddyPress?
If so, how would one go about that?
I’ve done a bit of searching but can’t seem to find the answer.I’m using the latest wp/bp installation.
Thank you in advance
I am sure this has been asked before but I can’t find it. I would be very appreciative if someone could help me change the grey to my theme colors. The search bar and other navigation are all greys despite the customizer being the theme color. I use Youzify so all those pages and styling are perfect.
