Forum Replies Created
-
I have tested from both the users and also as a guest, groups are getting sorted alphabetically.
Please try to clear your cache. Also, check if everything you did for sorting is reverted except the code which I gave.
Hi
Please revert this
I basically reordered the options in the php file. and It worked to some extent.
and put the following code in your bp-custom.php file or child theme’s functions.php file:
add_filter( 'bp_nouveau_get_groups_filters', function( $filters, $context ){ return array_reverse( $filters, true ); },10,2);
I hope this will help you.
Hi,
Please check this plugin https://wordpress.org/plugins/bp-xprofile-custom-field-types/
function ps_mine_activity_args( $args ) { if ( ! bp_is_activity_directory() || ! is_user_logged_in() || ! empty( $args['scope'] ) ) { return $args; } $user_id = get_current_user_id(); $args['user_id'] = $user_id; return $args; } add_filter( 'bp_after_has_activities_parse_args', 'ps_mine_activity_args' );
Please put the above given code in your bp-custom.php file or in your child theme’s functions.php file.
Hope that it will show only logged-in user’s activities in the sitewide activity stream.
Please check this plugin https://wordpress.org/plugins/mediapress/
Hi,
Hopefully this https://buddydev.com/set-default-landing-tab-buddypress-activity-directory/ will help you.
Thanks
Hi,
There’s a setting in BuddyPress for auto-refresh https://prnt.sc/s5kof3
Please check if this helps you.
Hi,
Please check this: https://wordpress.stackexchange.com/questions/6664/how-to-auto-accept-a-friend-request-in-buddypress-based-on-user-meta
Please remove the condition of
is_user_expert
and check after that. You should try this on the dev/staging version of your site and if it works for you then you can use it on your live site.For members addition in a group automatically, please check this one https://buddypress.org/support/topic/how-to-add-new-members-to-groups-automatically/
Hope it will help you.
Hi
I think you are looking for this https://wordpress.org/plugins/bp-user-profile-reviews/ but this was last updated a year ago so please test it once on staging or localhost before going live.
Thanks
Hi
If it is not created then please create a page with the name ‘Members’ https://prnt.sc/qno0jj and assign it here https://prnt.sc/qno0l4 then you can see that page in the menu panel.
Thanks
Hi,
Please check if the page is created under pages and also if it is assigned in BuddyPress settings.
Thanks
Hi,
I guess it is not possible to tag all members at once. Although this one https://buddypress.org/support/topic/how-mention-all-members/ is old but just to check the reason why ‘all mention’ is not recommended you can see that. The plugin mentioned there is very old and hasn’t been tested with the latest 3 major releases so be careful to use it.
Thanks
Hi,
You can mark that group as a featured group using this plugin https://wordpress.org/plugins/bp-featured-groups/ and then can show that on your page using the shortcode provided.
I hope this will help you.
Thanks
Hi @dfcday
I think you are looking for this solution https://buddydev.com/plugins/bp-non-editable-profile-fields/
Hope this will help.
Hi,
Please try this code.
function ps_groups_per_page( $loop ) { if ( bp_is_groups_directory() ) { $loop['per_page'] = '40'; } return $loop; } add_filter( 'bp_after_has_groups_parse_args', 'ps_groups_per_page');
You can paste this code in your child theme’s functions.php file or just create bp-custom.php(https://codex.buddypress.org/themes/bp-custom-php/) and paste it there.
Thanks
Hi,
Can you please confirm if you are getting the id of the group in this variable
$gid
?Thanks
Hi,
It’s because you forgot to use this function https://prnt.sc/ohpc6z
You have created it but have not used it. It returns the value of saved meta.
So now you have to replace this line:
<textarea name="group-guidelines" id="group-guidelines" aria-required="true"></textarea>
with this
<textarea name="group-guidelines" id="group-guidelines" aria-required="true"><?php echo custom_field('group-guidelines'); ?></textarea>
and this line:
<textarea name="group-aims" id="group-aims" aria-required="true"></textarea>
with this
<textarea name="group-aims" id="group-aims" aria-required="true"><?php echo custom_field('group-aims'); ?></textarea>
Thanks
Hi,
If you need a different color then you have to use the element class and add a CSS rule for it.
For example:
.your_class_name_here{ background: your_color_code_here; }
Thanks
Hi,
Have you checked if the issue remains with any default theme, like twenty nineteen, in use?
Please have a full backup of your site and then try switching the theme to test this.
Thanks
Hi,
Please try this solution https://buddydev.com/make-your-buddypress-sitewide-activity-stream-friends-only/
Thanks
Yes, please try that and if there is any browser cache clear that too.
It’s very strange. I can see it perfectly fine with just BuddyPress and Twenty Nineteen theme activated. Can you please try changing the theme to twenty seventeen and then check if it is coming there?
Please have a backup first and then try deactivating plugins except for BuddyPress.
Ok, please check if your_site_url/groups/create/ this is leading you towards a group creation or not. If not then there is a possibility that any other plugin is creating the conflict here.