Search Results for 'buddypress'
-
Search Results
-
Hey there,
I am using BuddyPress 12.4.0. I have found a similar issue on older versions when searching for a solution, but nothing I found could help me resolve the issue. The messages are being sent to the user email addresses, but when logged in to wordpress, buddypress shows the number of notifications and number of messages, but displays no list of messages in the inbox.
If someone can assist me to resolve this issue, I would be most appreciative.
Thanks, Mike.I am getting this message on every admin page:
A BuddyPress page has been added for the following active BuddyPress Components which did not have associated BuddyPress Pages yet: Activity, Groups, Activate. You may need to refresh your permalink settings.I’ve refreshed permalink settings 20 times, dumped server and browser caches, closed it with the little x – over and over again but it won’t go away.
How do I get rid of it?
Hi all..
I have a BIG headache when using BuddyPress and wager many others do too. I have many users join my site every day which I’ve set to manually approve each user(membership). Many membership requests I quickly approve as I see from their answers to my varied signup questions they are genuine. However others require contacting and double-checking.THE PROBLEM: I end up with pages and pages (and pages) of unapproved users I have already looked at and have to scroll through and often look at 2-3-4 times (having forgotten I already looked their signup/profile).
REQUIREMENT: I desperately way to mark and filter these viewed but unapproved signups and only see ones I have not checked (on this page: mysite.com/wp-admin/users.php?page=bp-signups). This is making it almost IMPOSSIBLE TO MANAGE THE SITE/ SIGNUPS. I’m sure others experience this.
If not possible – any suggestions welcome as to how I can mark as viewed and filter signups on this page: mysite.com/wp-admin/users.php?page=bp-signups
Thanks
Ed.Topic: custome query
i want to get only 2 comments , on load of activity page . wich i really get using my code
“add_filter(‘bp_use_legacy_activity_query’, function ($value, $method, $args) {
if ($method == “BP_Activity_Activity::get_activity_comments”) {
return true;
}
}, 10, 3);add_filter( ‘bp_activity_comments_user_join_filter’, function( $value, $activity_id, $left, $right, $spam = ‘ham_only’ ) {
// Modify the SQL query to fetch only two comments
global $wpdb, $bp;
$bp = buddypress();$xprofile_active = function_exists(‘bp_is_active’) && bp_is_active( ‘xprofile’ );
// Initialize fullname related variables
$fullname_select = $fullname_from = $fullname_where = ”;// Select the user’s fullname with the query if XProfile is active and user has filled the field.
if ( $xprofile_active ) {
if ( bp_has_profile() ) {
// Get the field value if user has filled it.
$field_id = 1; // Modify this according to your field ID.
$field_value = bp_get_profile_field_data( ‘field=’ . $field_id );
if ( !empty( $field_value ) ) {
$fullname_select = “, pd.value as user_fullname”;
$fullname_from = “, {$bp->profile->table_name_data} pd “;
$fullname_where = “AND pd.user_id = a.user_id AND pd.field_id = $field_id”;
}
}
}// Don’t retrieve activity comments marked as spam.
if ( ‘ham_only’ == $spam ) {
$spam_sql = ‘AND a.is_spam = 0’;
} elseif ( ‘spam_only’ == $spam ) {
$spam_sql = ‘AND a.is_spam = 1’;
} else {
$spam_sql = ”;
}// Modify the SQL query to fetch only two comments
$sql = $wpdb->prepare( “SELECT a.*, u.user_email, u.user_nicename, u.user_login, u.display_name{$fullname_select}
FROM {$bp->activity->table_name} a, {$wpdb->users} u{$fullname_from}
WHERE u.ID = a.user_id {$fullname_where}
AND a.type = ‘activity_comment’ {$spam_sql}
AND a.item_id = %d
AND a.mptt_left > %d
AND a.mptt_left < %d
ORDER BY a.date_recorded ASC
LIMIT 2″,
$activity_id, $left, $right );return $sql;
}, 10, 5 );”but it give me also count 2 , can i get original count.
means , any activity has 10 comment then it display only 2 but give count 10
Hi all,
I’m considering using BuddyPress with my Elementor site. I have never created a forum on a WordPress site before, but I am immediately wondering about the issue of storage, especially if images are involved as this can grow quite large quickly and eat up the available storage allowed by the hosting service.
Can BuddyPress connect to external storage such as Amazon S3? If so can text be stored as well as images? Is there another strategy that I’m overlooking to solve the storage issue with forums?
Thanks in advance!
Brenden
We have a WordPress (v6.4.3) Membership Pro (v3.0.1) site, with a Twenty Fourteen Theme (v3.8)
We use Mailchimp Integration, which is a Membership Pro add-on (v2.3.4) which works fine
We recently added BuddyPress (v12.4.0), as although Member Pro has been great for everything else, we needed better support for Groups
But we find that BuddyPress Group operations (managing Groups, adding Members to a Group etc) do not fire a Mailchimp update; if we later update the Member in WordPress or Membership Pro, Mailchimp is updated OK i.e. the BuddyPress fields are configured OK, but the update isn’t triggered on BuddyPress events
Any suggestions welcome
Topic: Disable the Email Template
Hi,
Does anyone know how to disable the BuddyPress email templates?
Currently the explanation was:
Disable BP Email
If you already have an existing HTML email template solution in place and want to completely disable BuddyPress’ email template system, add the following to wp-content/plugins/bp-custom.php:add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’ );
However, the link wp-content/plugins/bp-custom.php seems to be unfinished or incorrect.
I have tried creating the file and pasting the code in, but that doesn’t work.Topic: Custom Theme Development
Hey I’m working on a project of mine. I’m coding it on a custom theme and I’ve set the basics already, I installed BuddyPress and I wanted to know where can I find like from 0 custom theme development stuff that could help me use the possibilities of BuddyPress or should I maybe include a premade theme in which I can see functionalities and copy them to my theme? P.S I really got lost in the Documentation for some reason it’s not really helpful to me as I’m just trying to pick this plugin up.
Thanks 😀
hello
i have 2 wp network websites with 2 different themes
1/ is the main website where i want to show the members directory + the public bb public profile
2/ is the place where i want users to edit they xprofile fieldsthe url
https:[site2]/members/[username]/profile/edit/group/1/ us giving errorWarning: Attempt to read property "ID" on null in /var/www/html/wordpress/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-component.php on line 950 Fatal error: Uncaught Error: Attempt to assign property "single_item_name" on null in /var/www/html/wordpress/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-component.php:953 Stack trace: #0 /var/www/html/wordpress/wp-includes/class-wp-hook.php(324): BP_Members_Component->parse_query() #1 /var/www/html/wordpress/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #2 /var/www/html/wordpress/wp-includes/plugin.php(565): WP_Hook->do_action() #3 /var/www/html/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(607): do_action_ref_array() #4 /var/www/html/wordpress/wp-includes/class-wp-hook.php(324): bp_parse_query() #5 /var/www/html/wordpress/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #6 /var/www/html/wordpress/wp-includes/plugin.php(565): WP_Hook->do_action() #7 /var/www/html/wordpress/wp-includes/class-wp-query.php(1140): do_action_ref_array() #8 /var/www/html/wordpress/wp-includes/class-wp-query.php(1868): WP_Query->parse_query() #9 /var/www/html/wordpress/wp-includes/class-wp-query.php(3824): WP_Query->get_posts() #10 /var/www/html/wordpress/wp-includes/class-wp.php(696): WP_Query->query() #11 /var/www/html/wordpress/wp-includes/class-wp.php(816): WP->query_posts() #12 /var/www/html/wordpress/wp-includes/functions.php(1336): WP->main() #13 /var/www/html/wordpress/wp-blog-header.php(16): wp() #14 /var/www/html/wordpress/index.php(17): require('...') #15 {main} thrown in /var/www/html/wordpress/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-component.php on line 953when i add define(‘BP_ROOT_BLOG’, 2); to wp config , it works but i will get the same error in
https:root/members/[username]in other other words i want that both
https:[site2]/members/[username]/profile/edit/group/1/
and
https:[root]/members/[username] to workany ideas ?
Topic: No Email Notifications
Hello! I’ve been trying to troubleshoot this issue with no luck. None of the email notifications are being sent out from Buddypress. Other emails are working: password reset, contact forms, Memberpress emails, etc. I am also using WP SMTP.
I have already changed to a default theme, disabled ALL plugins except Buddypress and the Email Log plugin. All of my “Emails” with their “Situations” were in my Dashboard but on the suggestion of other posts, I’ve regenerated these emails with the Buddypress Tools option.
I’m hoping someone can help. Thank you.
OK, so everything is setup WP, BuddyPress plus Youzify for styling.
I have Admin approval setup for new Members, but would like to setup additional admin users to manage the approvals and create groups etc. I will then act as the main admin for the website, updates etc. — but for what I think is an obvious security issue, I would like to not grant these user full admin roles.
I’ve searched here and online but cannot find any sensible solutions so would appropriate any help or advise on how this might be possible — perhaps a 3rd party plugin? 🙏
Hi,
I really need your help. Its a strange issue.
I some week ago installed a new website on siteground hosting with buddyx theme and buddypress. All went well.
Did the same tonight on another new website on the same host and all the same – except its the new buddypress 12.4.0 instead of 12.3.0.
On the new website the shortcodes for login etc is not working. The menu options are not available either to choose “login” and register for logged in or out visitors… its like buddypress is not installed correctly.
Tried installing the older version manually but no difference.
So one website, not issues, the other some issues.
Any idea how to get it firing on the latest website I am building?
Best regards,
FlamurenTopic: Issue in BP 12+
[26-Mar-2024 11:20:56 UTC] PHP Warning: Attempt to read property “activity” on null in /var/www/eufort-sokolniki/wordpress/current/wp-content/plugins/buddypress/bp-activity/bp-activity-template.php on line 649
[26-Mar-2024 11:20:56 UTC] PHP Warning: Attempt to read property “id” on null in /var/www/eufort-sokolniki/wordpress/current/wp-content/plugins/buddypress/bp-activity/bp-activity-template.php on line 649How do I add the Display Name Selection Dropdown to my BuddyPress Member Profile Edit page (https://my_domain.com/members/username/profile/edit) so users can change their Display Name directly from their Profile page and without having to go to the WordPress Dashboard Edit Profile?
After new update, all my slugs were edited and added a suffix “-2” to each slug.
For example the slug “profile” is now “profile-2” and when I try to rename it back, it says the changes were successfully edited, however, it is still “profile-2”.
I tried another name for the slug, for example, “profileeee” and that change was ok and saved. So it seems that slug “profile” already exists, and therefore the BuddyPress system adds “-2”, but when I try to find anything on the “profile” slug, nothing is found.
I disabled all plugins excepting Buddypress, and tried to rename it back to “profile” it was unsuccessful. So there must be an issue within the Buddypress.
Can anyone guide me on how to proceed to change the slugs and remove the suffix?
Hi,
yes I did some noob thing and touched the login template without saving a copy. New host so I did not handle the edit correctly in their tools.
I would like your help to look in the login template file located here:
wp-content – plugins – buddypress – bp-core – blocks – login-form – index.asset.php (this file)My code is now like this:
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => 'd1a59c408f3746550df0');This throws an error for the login page as follows:
Parse error: syntax error, unexpected end of file in ****/wp-content/plugins/buddypress/bp-core/blocks/login-form/index.asset.php on line 2I would just like to get the correct code so that I get it running again. If my hosts code tool is correct its two rows only.
Best regards,
stupid me…
Topic: problem with codex
Hi i’ve got a problem with notifications (i search throught forum but didn’t find solution) .
When notifications is sended , i always get {{{activity_reply}}} or {{{message}}}in mail’s text instea of the content of it . Seems not recognized by the system . Does this one need only 2 and not 3 ‘{‘ ?
(yet i didn’t change anythin from original release )
Where can i change this in this case ? (i use last wordpress and last buddypress updated versions )

