Hello, I’m currently using bbpress 2.6.6 and buddypress 7.1.0, (wordpress 5.6, php 7.4.12, theme is siteorigin-unwind 1.6.12), and experiencing this problem as mentioned here, (members of hidden groups not being able to see the topics of the sub-forum). I’m a newbie with the background code, though my private and public groups are working. I can see the fix for ticket 7443 in buddypress.js that was indicated then, and believe I’ve implemented it, but am wondering if other people still have a problem with this, and if so if there is another fix/workaround available. Thank you.
Other options could include
MediaPress
BP Group Documents
are also worth looking at.
& and if you would like to collaborate in a group to produce a document including attachments then take a look at BuddyPress Docs
Take a look at BuddyDrive . You can share files – though AFAIK NOT “to make them visible”
I am using a customize theme. I don’t have any custom functions in bp-custom.php. Yes I know forum support is limited where third party themes are concerned but I can’t fix it.
here is my buddypress activity page https://www.upsozluk.com/etkinlik/
How can I fix the gap? There is no problem in mobile version of my website, but only computers have this space problem. i am using the latest version of wordpress
Thanks!!
That´s not possible out of the box. Did you check out plugins like rtMedia for WordPress, BuddyPress and bbPress? Buddyboss might be an option, but that´s not for free.
It´s been a while, but I am dealing with something similar now. So that might help…
Say what?
That seems to be the easiest way to add some missing translations. After installation you can find the plugin in WordPress under “Tools”. In my case I translated the Original-String “Engagements” with the Textdomain “buddypress”.
Hello!
I have a question about groups.
I searched for this question and did not find any matching questions.
I’m also new to wordpress/buddypress, so please bear with me 🙂
Here is my site https://uwcnorthyork.ca/
WordPress version: 5.4.2
BuddyPress version: 2.3.0
My question is:
When a user requests permission to join a group, is there a way to get an email sent to the moderator of that group, (so they can accept them)?
Right now the email goes to the site admin (me) which is ok, but its important that it goes to the moderator as well. If it can only go to one of these, then I would like it to be the moderator.
Any help would be appreciated.
I am using BuddyPress 5.1.2 and WordPress 5.3.6.
The link “groups” at a user profile shows correctly the number of groups the user belongs to but if clicked it sends the user to the “all groups” page instead of a page that shows only the groups the user belongs to.
The same happens when clicking “members” on a group page, instead of showing all the members of that particular group, it shows every member that exists on the site.
It is actually called “2021” made by the WordPress Team. Thanks for looking at this.
Does this issue also happens when using BP Better Messages?
Anybody tried?
BP Better Messages
BP Better Messages – is a fully featured replacement for standard BuddyPress Messages and also can work as private messaging system for WordPress when using without BuddyPress.
Plugin is fully backward compatible with BuddyPress Messages.
BP Better Messages
BP Better Messages – is a fully featured replacement for standard BuddyPress Messages and also can work as private messaging system for WordPress when using without BuddyPress.
Plugin is fully backward compatible with BuddyPress Messages.
BP Better Messages
Hello.
There is a solution that you exactly looking for.
It is a chat plugin for BuddyPress and WordPress.
This chat has three basic feature such as:
- Text group chat between users
- Text private (one-to-one) chat between users
- Online chat support (chat with customers)
Besides these functions, the ImbaChat has also:
- Sharing files (any type of file)
- Chat moderation
- Video chat (group and private)
- Audio calls
The ImbaChat basic functions are free. Pricing for the additional features is from $4.99 to $19 per month. Easy and quick installation on BuddyPress. Full integration with the user base of your website.
Visit the official website of the plugin to learn more.

When I log in buddy press has me displayed as chughes@email.edu. My @mentions is even funkier @chughesggc-edu.
Admin says he doens’t think he can change it. Is there anything I can ask the admin to try. It will let me change my display name to Cory Hughes but then when I log out and back in the name is changed back to chughes@email.edu.
And it carries over to the wordpress blog as author: Chughes@Email.Edu. How can simply have my real name as my display name and a custom @mentions name like @CoryHughes?
I read through the threads and found similar topic but did not understand the fix as I’m just an end user. What do I ask admin to try? Thanks in advance.
See Screen Shots here:
https://ggcedu-my.sharepoint.com/:w:/g/personal/chughes_ggc_edu/EeKRlBi7GhpLtapbYwbb-QYBFK6lbCsTCWGqQU5bSlRHdg?e=XFadd3
I haven’t seen any movement on it. I ended up doing a hack. In my theme’s bp template, I checked (in php) if it’s an invitation button then render a direct link instead of bp_nouveau_groups_loop_buttons()
I use WordPress 5.6 and Buddypress 7.1.0
if I go to the login page on my website and want to log in, I am directed to the start page but not logged in.
My Site:
Registrieren
To Test use:
Buddypress
Buddypress123
Hey Eric,
I’ve written several plugins for that, but they haven’t been tested for years, so frankly I have no idea whether they work or not.
Please check:
https://github.com/slaFFik/bp-feeds
https://github.com/slaFFik/bp-groups-rss-feed-tab
Feel free to report any found issues on GitHub, I will see whether I can fix them.
To install those 2 plugins from GitHub you will need to download ZIP file of the repo and install that zip as a usual plugin using your WordPress admin area.
hi vapvarun and thank you for replying back (: ,
i tried to write a code to override the main template – and i make the script run as a plugin
here what i did
<?php
/*
Plugin Name: PAGTEM
Plugin URI: https://www.example.com
Version: 0.0.1
Author: NULL
Author URI: https://www.example.com
*/
class PageTemplate {
/**
* A reference to an instance of this class.
*/
private static $instance;
/**
* The array of templates that this plugin tracks.
*/
protected $templates;
/**
* Returns an instance of this class.
*/
public static function get_instance() {
if ( null == self::$instance ) {
self::$instance = new PageTemplate();
}
return self::$instance;
}
/**
* Initializes the plugin by setting filters and administration functions.
*/
private function __construct() {
$this->templates = array();
// Add a filter to the attributes metabox to inject template into the cache.
if ( version_compare( floatval( get_bloginfo( 'version' ) ), '4.7', '<' ) ) {
// 4.6 and older
add_filter(
'page_attributes_dropdown_pages_args',
array( $this, 'register_project_templates' )
);
} else {
add_filter(
'theme_page_templates', array( $this, 'add_new_template' )
);
}
// Add a filter to the save post to inject out template into the page cache
add_filter(
'wp_insert_post_data',
array( $this, 'register_project_templates' )
);
// template assigned and return it's path
add_filter(
'template_include',
array( $this, 'view_project_template')
);
$this->templates = array(
'FullC.php' => 'Full Canvas',
// this file exist in the same folder as the plugin like that
/* Plugin Template ( Folder ) ========
|
|
|
Index.php (file)
FullC.php (file)
================ */
);
}
/**
* Adds template to the page dropdown for v4.7+
*
*/
public function add_new_template( $posts_templates ) {
$posts_templates = array_merge( $posts_templates, $this->templates );
return $posts_templates;
}
/**
* Adds our template to the pages cache in order to trick WordPress
* into thinking the template file exists where it doens't really exist.
*/
public function register_project_templates( $atts ) {
// Create the key used for the themes cache
$cache_key = 'page_templates-' . md5( get_theme_root() . '/' . get_stylesheet() );
// Retrieve the cache list.
// If it doesn't exist, or it's empty prepare an array
$templates = wp_get_theme()->get_page_templates();
if ( empty( $templates ) ) {
$templates = array();
}
// New cache, therefore remove the old one
wp_cache_delete( $cache_key , 'themes');
$templates = array_merge( $templates, $this->templates );
// Add the modified cache to allow WordPress to pick it up for listing
// available templates
wp_cache_add( $cache_key, $templates, 'themes', 1800 );
return $atts;
}
/**
* Checks if the template is assigned to the page
*/
public function view_project_template( $template ) {
// Return the search template if we're searching (instead of the template for the first result)
if ( is_search() ) {
return $template;
}
global $post;
// Return template if post is empty
if ( ! $post ) {
return $template;
}
// Return default template
if ( ! isset( $this->templates[get_post_meta(
$post->ID, '_wp_page_template', true
)] ) ) {
return $template;
}
// Allows filtering of file path
$filepath = apply_filters( 'page_templater_plugin_dir_path', plugin_dir_path( __FILE__ ) );
$file = $filepath . get_post_meta(
$post->ID, '_wp_page_template', true
);
// check if the file exist first
if ( file_exists( $file ) ) {
return $file;
} else {
echo $file;
}
// Return template
return $template;
}
}
add_action( 'plugins_loaded', array( 'PageTemplate', 'get_instance' ) );
now if you go to
Pages > Edit xor Add New Page > Page Attributes > A New Section Called Templates > I Click On the Full Canvas > [UPDATED]
Nothing Changed (:
Why’s Is That – Is There’s Wrong With The Code Or The Buddypress V that i use ?
i use ==> Version 6.3.0 | By The BuddyPress Community
Hello, I’m currently using bbpress 2.6.6 and buddypress 7.1.0, (wordpress 5.6, php 7.4.12, theme is siteorigin-unwind 1.6.6), and experiencing this problem as mentioned here, (members of hidden groups not being able to see the topics of the sub-forum). I’m a newbie with the background code, though my private and public groups are working. I can see the fix 7443 in buddypress.js that was indicated then, but am wondering if other people still have a problem with this, and if so if there is another fix available. Thank you.
it’s using medium editor, you can try it with ACF and https://wordpress.org/plugins/acf-medium-editor-field/ and create any type of frontend form submission.
@mungbean BuddyX is live at wp.org
WordPress version 5.6
PHP: 7.4
BuddyPress Version 7.1.0
https://annarborcommunitycommons.org/members/drron/messages/sentbox/
I see posts going back many years ago reporting this problem, but I don’t see that anyone ever posted a resolution!
Problem
I’m working on a site with a custom theme. The members’ list says “All members 0” and lists no members, and, below the search box “Sorry, no members found”. What do I need to do to show the actual members?
——
Details
I’ve copied wp-content/plugins/bp-templates/bp-nouveau/buddypress to wp-content/themes/my-custom-theme/buddypress. I’ve added links to discussion boards, groups and a members list to the menu and populated the site with members data by using the Buddypress Detault Data plugin (and added a few extra users, and logged in as them).
If I insert the contents of buddypress/members/members-loop.php into the custom theme’s index.php, then the index.php shows me a listing of members (showing when the database says when they were last active). I am wondering if this means I need to set a path somewhere.
I am seeing the same behaviour if I use the “twenty seventeen” “twenty twenty” and “twenty twentyone” themes. This is using WordPress 5.6 and Buddypress 7.1.0. I can’t provide a URL as it’s currently a development version on my NetBSD (unix) laptop.