-
Prashant Singh replied to the topic by default sort groups alphabetically in the forum How-to & Troubleshooting 4 years, 5 months ago
I have tested from both the users and also as a guest, groups are sorted alphabetically.
Please try to clear your cache. Also, check if everything you did for sorting is reverted except the code which I gave.
-
Prashant Singh replied to the topic by default sort groups alphabetically in the forum How-to & Troubleshooting 4 years, 5 months ago
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…
-
Prashant Singh replied to the topic Upload document at registration in the forum Requests & Feedback 4 years, 5 months ago
Hi,
Please check this plugin https://wordpress.org/plugins/bp-xprofile-custom-field-types/
-
Prashant Singh replied to the topic Limit activity stream only to self in the forum How-to & Troubleshooting 4 years, 5 months ago
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'…[Read more] -
Prashant Singh replied to the topic Customize user activity form in the forum How-to & Troubleshooting 4 years, 5 months ago
Please check this plugin https://wordpress.org/plugins/mediapress/
-
Prashant Singh replied to the topic followers in the forum Installing BuddyPress 4 years, 5 months ago
-
Prashant Singh replied to the topic Remove all members section in the forum How-to & Troubleshooting 4 years, 5 months ago
Hi,
Hopefully this https://buddydev.com/set-default-landing-tab-buddypress-activity-directory/ will help you.
Thanks
-
Prashant Singh replied to the topic Refresh activities without having to click the "Latest Updates" button in the forum How-to & Troubleshooting 4 years, 7 months ago
Hi,
There’s a setting in BuddyPress for auto-refresh https://prnt.sc/s5kof3
Please check if this helps you.
-
Prashant Singh replied to the topic Send Invites Adds Users to Group Automatically in the forum Creating & Extending 4 years, 9 months ago
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…[Read more]
-
Prashant Singh replied to the topic Post ratings buddypress sweet date core profile in the forum Installing BuddyPress 4 years, 10 months ago
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
-
Prashant Singh replied to the topic Can not create members menu in the forum How-to & Troubleshooting 4 years, 10 months ago
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
-
Prashant Singh replied to the topic Can not create members menu in the forum How-to & Troubleshooting 4 years, 10 months ago
Hi,
Please check if the page is created under pages and also if it is assigned in BuddyPress settings.
Thanks
-
Prashant Singh replied to the topic @all in the forum Creating & Extending 4 years, 10 months ago
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
-
Prashant Singh replied to the topic buddypress group display in the forum How-to & Troubleshooting 4 years, 10 months ago
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
-
Prashant Singh replied to the topic Profile fields can only be changed by admin? in the forum How-to & Troubleshooting 4 years, 10 months ago
Hi @dfcday
I think you are looking for this solution https://buddydev.com/plugins/bp-non-editable-profile-fields/
Hope this will help.
-
Prashant Singh replied to the topic How To: Change Number of Entries on the Group and Members Pages? in the forum How-to & Troubleshooting 5 years, 4 months ago
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…[Read more]
-
Prashant Singh replied to the topic Display custom action in group activity stream tab in the forum How-to & Troubleshooting 5 years, 4 months ago
Hi,
Can you please confirm if you are getting the id of the group in this variable
$gid
?Thanks
-
Prashant Singh replied to the topic Custom Group Fields not storing if you go to previous step in the forum How-to & Troubleshooting 5 years, 4 months ago
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
[Read more]
<textarea name="group-guidelines" id="group-guidelines"… -
Prashant Singh replied to the topic How can i assign a CSS class/selector to the unread notification count. in the forum How-to & Troubleshooting 5 years, 4 months ago
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
-
Prashant Singh replied to the topic Name Not Displaying on Profile Pages, Register Link Not Displaying in Menu in the forum How-to & Troubleshooting 5 years, 4 months ago
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
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago