Search Results for 'buddypress'
-
Search Results
-
Topic: Avatar badges/labels
Latest versions:
WordPress
BuddyPress
Twenty Seventeen themeIs there a way of adding a label or badge to users avatars according to their member types so when avatars are in a list you can see form their badge what member tyoe they are. Like the image below…

Hi there,
I have 8 private groups, each with their own private forum. Is there any way I can display forum activities like replies and created topics in the group activity stream? I would like to use ‘BuddyPress Group Email Subscription’ plugin to notify group members on forum activity relevant to their group.
WordPress version: 5.5.1
BuddyPress version: 6.2.0
bbPress version: 2.6.5Thanks!
Topic: Download from Group pages?
Hi, I’m looking for a suitable group plug-in for a website so hope you can help. I’m very new to Buddypress so apologies if this question has already been answered.
Is it possible to download documents (particularly interested in PDF, Word and Excel) from a Group page/wall using Buddypress? The examples I’ve seen so far do not have any examples of this unfortunately.
Thanks in advance,
LukeDoes anyone know how to update the time format for BuddyPress? I’d like to change the format from the default.
20 seconds ago. I’d like to it to read a few seconds ago.
1 day, 7 hours ago. I’d like it to read 1 day ago.
1 week, 2 days ago. I’d like it to read 1 week ago.
2 weeks, 3 days ago. I’d like it to read 2 weeks ago.And so on..
Does anyone actually know how to achieve this without telling me to look at
function bp_core_time_since?Hello!
Could someone perhaps help me adapt this code? Currently it shows a copy of all blog comments in the activity feed. I want it to rather show copies of learndash lesson comments to their associated course group. There is a plugin that does this, but it’s glorified with many other features, and the feature that I would like for doesn’t work as it should anyways.
/* Post Comments in Buddypress Activity */ function bca_record_activity($comment_id, $approval) { if($approval == 1) { $comment = get_comment($comment_id); $userlink = bp_core_get_userlink($comment->user_id); $postlink = '<a href="' . get_permalink($comment->comment_post_ID) . '">' . get_the_title($comment->comment_post_ID) . '</a>'; bp_activity_add(array( 'action' => sprintf( __( '%1$s commented on the lesson: %2$s', 'buddypress' ), $userlink, $postlink), 'content' => $comment->comment_content, 'component' => 'bp_plugin', 'user_id' => $comment->user_id, 'type' => 'new_blog_comment', )); } } //comment_post is triggered "just after a comment is saved in the database". add_action('comment_post', 'bca_record_activity', 10, 2); // We want activity entries of blog comments to be shown as "mini"-entries function bca_minify_activity($array) { $array[] = 'new_blog_comment'; return $array; } add_filter('bp_activity_mini_activity_types', 'bca_minify_activity'); // Disables comments on this type of activity entry function bca_remove_commenting($can_comment) { if($can_comment == true) { $can_comment = ! ('new_blog_comment' == bp_get_activity_action_name()); } return $can_comment; } add_filter('bp_activity_can_comment', 'bca_remove_commenting');Plugin I reference: https://wordpress.org/plugins/buddypress-learndash/
Your time and support is greatly appreciated!
Topic: Forgot Where A Page Is?
I have forgotten where a particular page is in Buddypress. When you first register, you fill out the required and optional profile fields. You also get to choose a visibility to assign to each profile field. Where do I go to edit the visibility choices that were originally made? Thanks.
Topic: Hiding BuddyPress Profiles
Is there a simple way to ensure that users cannot see each others’ BP profiles?
…For example to set BP so that users can only see their own profiles (while admin can see all profiles).
Topic: Hiding Toolbar for members
Hi,
how can i hide the wordpress toolbar (adminbar) for logged in (!) buddypress members?
thanks!
Hello Guys!
I have a problem with BuddyPress v. 6.2.0.When I try to add an entry (activities) to my profile it is not visible. It is also not in the history (in the admin panel). After refreshing the page, it appears only under my nickname with a note (a few seconds ago). This note is still the same. After adding a comment, this one also does not appear in activities.
The second problem is with group formation. When I want to create a group and give its name and description, and then try to go to the next stage, I get a message that it is not possible to create a group, try again later.
Anyone can help me?
Hi!
when i integrate buddypress items (such as profile, messages, groups…) in the menu, they are just shown if the visitor is logged in.
when i integrate a regular page (i created in wordpress) in the menu, it is shown weather the visitor i slogged in or not.
when i copy the css class of a buddypress menu item (e.g. bp-menu bp-settings-nav) and paste it in the css field of the regular page, this menu item is also just shown to logged in visitors. this is exactly what i need!
the problem is just, that it kind of confuses the menu. all tems with the same class are spoken at once.
is it possible to create my own css class of the same kind, that hides the menu items in case the visitor isn’t logged in?!
thanks a lot!!!
Topic: Create a Site Bug
dear team,
i am afraid i´ve found a bug in the “create a site” process under wordpress multisite and buddypress.issue: when creating a new site via BP frontend (/create/), BP uses the site domain of the BP_ROOT_BLOG blog id (site where BP runs) instead of the BLOG_ID_CURRENT_SITE domain (main site of the multisite install) to create a new site on the multisite install, but shows the “correct” multisite main domain on the BP create frontend when entering site name and site title of the new site.
i noticed that issue through a new project setup where i needed to set the BP site on a different domain than the main site of the multisite. tested and replicable on my siteground install with wp 5.5 and bp 6.2.0
looks like a low prio bug, but if someone has an idea to fix this, i would love to try it on my testinstall.
tnx, Eric