BP legacy – but yes, i have some changes in child theme.
When I disable child theme, it is working…
I’m just wondering where can be the issue…where i should focus to find the trouble…
somewhere in buddypress/activity/ ?
Which bp Theme are you using?
Tried to switch theme to twenty seventeen – not helped
Underscores is generally a theme thing, so the first thing I’d do would be to switch to a default theme such as 2017 and see if that fixed the problem, failing that I’d be looking for plugin conflicts.
In the buddypress.org/about/groups page it says “Each group has a homepage. The group’s Activity Stream is the default Home tab for any group.” That’s not what I’m seeing. When I go to a group I’m in a “home” tab that includes an information box saying “Manage the Groups default front page” and a description of the group. Activity is a separate tab. I’d certainly like to have the home page for a group show the most recent posts there. How would I do that?
WordPress 5.1.1 running Twenty Sixteen theme.
Buddypress Version 4.2.0.
Mind if you’ve got template overloads in place or a theme that’s doing it, you’ll get that effect.
That’s a bit odd, to my knowledge both themes use the same images. You probably need to turn your error reporting on, if you haven’t already?
I switched to BP Legacy theme and that has fixed the problem.
The BP active member count is stored in transient memory and the count you see displayed is reading this transient. When you run the tool to correct the count this transient is deleted then next time you go to read the value it detects there is no count so it does a db count of all active users and resets the transient. So the Tools option suggested by Shanebp should have worked. It not working suggested there is potentially something up with your database.
The only other thing that affects the active user count is the excluded user id’s, these are the inactive and deleted users.
As a next step I suggest you try switching to the BP Legacy theme and see if that works. I don’t think it will but it would help rule out a nouveau specific function involved in displaying the count.
Hi there, it looks like you are using the BP Nouveau theme, can you confirm?
Thank you. I will look into the theme files. Didn’t check there.
Hi @irahulsolanki I just tested this again with the BP Legacy theme and I got the same results as you. could you raise a support ticket for this?
https://buddypress.trac.wordpress.org/
Seems to be BuddyPress Create Group Types.
The other filter on the top you see on the attachment is the filter of the theme. This filter work but not the buddypress filter by native you see on the picture (the one i try to click on it).
I’m not really sure what to suggest. BP in it’s raw environment does not do this, if you have no other plugins loaded and a default theme then it should work correctly.
Here’s how to remove forums from all users profile tabs and toolbar menu, this code would need to go in your child-themes functions.php:
function venutius_remove_forums_on_usermenu() {
global $wp_admin_bar;
if ( bp_use_wp_admin_bar() ) {
$wp_admin_bar->remove_node( 'my-account-forums' );
}
}
add_action( 'wp_before_admin_bar_render', 'venutius_remove_forums_on_usermenu' );
function venutius_remove_profile_forums_tab() {
bp_core_remove_nav_item( 'forums' );
}
add_action( 'bp_actions', 'venutius_remove_profile_forums_tab' );
“How about switching to the BP Legacy theme to see if that works?”
That is the first action i did : i deactivated all plugins exept bbpress and buddypress and i installed TwentySixteen official wordpress theme.
By default, BP does not show the creation date.
So, afaik, it’s coming from your theme or some other plugin.
You will have find it yourself.
Then you’d need to overload your child-themes template file for the homepage, but getting the activity on there would need quite a bit of coding.
BP was designed to be customised with plugins, it’s not unusual for a BP site to have several tens of plugins and maybe more.
I see. I’m not fond of adding too many plugins. I know this could be done as part of the child theme. That’s what I feel would be the best approach – that would keep extra plugins away from the multisite blog owners.
The thing is, I’m having a heck of a time getting my head around the BuddyPress template stack. I have worked out I’ll need two loops – WP and BP but that’s about it.
What I am trying to do is add a custom page type to my customizr child theme. This page would act as the front page for the site. I want to replicate most of the features of the current front page but show the (public) activity stream in a central column and recent blog posts in a sidebar (rather than filling the page as at present). A bit more like Facebook etc..
I’m getting my head around the complicated beast that is Customizr but I am clueless as to what I need to even start looking at to put the activity feed on the page as well.
I’m feeling overwhelmed by something that I keep thinking should be relatively straight forward. I would welcome some guidance to ease me into this.
You could just overload the buddypress/groups/single/cover-image-header.php file for your bp theme to display the new fields you have added.
You can enable search for names by putting this code in your child themes functions.php:
add_filter( 'bp_activity_get_include_user_search', 'venutius_add_name_to_search' );
function venutius_add_name_to_search( $setting ) {
return true;
}
Unfortunately there’s not a similar filter for the title, you could raise a feature request for this on https://buddypress.trac.wordpress.org/
{RESOLVED} : How to REMOVE “This field can be seen by:” ?
In the folder of the Theme, add the code below at the end of the file called style.css :
For me in Localhost : C:\xampp\htdocs\buddypressdivi2\wp-content\themes\Divi\Style.css
.field-visibility-settings-toggle{display:none!important;}
In Users/Profile Fields of WP-Admin, set the fields like below :
Visibility = Everyone
and Allow members to override
For information, the visibility of “This field can be seen by: All Members/Everyone/…” will be removed in both the Registration page & Edit Profile page … except for the fields (Required) Name …
It’s my first time on this BP Forum, please how to add “RESOLVED” ?
Thank you …
{RESOLVED} : How to REMOVE “This field can be seen by:” ?
In the folder of the Theme, add the code below at the end of the file called style.css :
For me in Localhost : C:\xampp\htdocs\buddypressdivi2\wp-content\themes\Divi\Style.css
.field-visibility-settings-toggle{display:none!important;}
For information, the visibility of “This field can be seen by: All Members/Everyone/…” will be removed in both the Registration page & Edit Profile page ….
In the site below, they copy the code to style.css file …
https://buddypress.org/support/topic/how-to-remove-this-field-can-be-seen-by/
You could download a plugin like this: https://wordpress.org/extend/plugins/safecss/ and add these lines of css to your style sheet, or If you have a created a child theme, you can just add these lines to your style.css file
.field-visibility-settings-toggle {
display:none;
}
.field-visibility-settings-notoggle {
display:none;
}
I don’t have the style.css file in my Theme but these 2 files instead :
editor-style.css
theme-customizer-controls-styles
Please do you know which CSS files need to be added or modified ?