Replies
Hi Amsi,
Thank you for the reply.If you are using our member types pro, the shortcode does not offer the option to use list view.
Also, we do not suggest using it with BuddyBoss.Regards
Brajesh- Brajesh Singh on May 19, 2022 at 1:21 pm in reply to: [Resolved] “BuddyPress User Badges” Update for BuddyBoss 2 #45022
Hi Hussein,
Here is what it should look like if you removed the css codeWith BuddyCircle
https://i.ibb.co/GQ67Z4F/Selection-505.png// without
https://i.ibb.co/Y761Q1S/Selection-506.pngIt seems there is some css conflict at your end.
Can you please provide me temporary guest access to your members directory and I can look and assist.
Regards
Brajesh - Brajesh Singh on May 19, 2022 at 1:04 pm in reply to: [Resolved] Who’s Online widget adjustment #45021
oops, you forgot to add a line at the bottom of that function.
Here is it updated for you.
add_filter( 'widget_title', 'enostalgia_show_online_members_only_widget_title', 10, 3 ); function show_online_members_only_widget_title( $title, $settings, $id_base ) { if ( 'Ποιος είναι συνδεδεμένος' == $title ) { return '<p class="notranslate stay-in-touch" style="color: #b8860b;">WHO IS ONLINE IN OUR FORUM</p>'; } return $title; }Regards
Brajesh - Brajesh Singh on May 19, 2022 at 1:01 pm in reply to: [Resolved] How do I allow all users to create subfolders in all doc folders in BuddyBoss? #45020
Thank you Torben.
Hi Sam,
Welcome to BuddyDev support.Please disable the Friends Suggestions Pro temporarily and check if that speeds up friendship request.
That will help us understand if it friendship suggestions plugin or something else. I don’t see any specific reason for friendship suggestions to cause this, so need to verify.
Thank you
Brajesh- Brajesh Singh on May 19, 2022 at 12:59 pm in reply to: Product designer that could be linked with MediaPress? #45018
Hi,
Thank you for the question.I am not aware of any such integration currently.
Regards
Brajesh - Brajesh Singh on May 18, 2022 at 10:43 pm in reply to: [Resolved] blog page template as forum page. #45007
Thank you Victor.
- Brajesh Singh on May 18, 2022 at 10:27 pm in reply to: [Resolved] Who’s Online widget adjustment #45006
Hi,
The filter ‘widget_title’ is dependent on plugin offering widget(some plugins may not offer it).Depending on which widget you are filtering, the issue is either the plugin not using widget_title filter or the title being different(or the plugin offering the filter but escaping the title).
Regards
Brajesh - Brajesh Singh on May 18, 2022 at 6:47 pm in reply to: Filter and limit member types only in registration form #45004
Hi Andreas,
Welcome to BuddyDev support forums.
Thank you for the question.Please use the following code
add_filter( 'bp_xprofile_member_type_field_allowed_types', function( $member_types ) { if ( ! bp_is_register_page() ) { return $member_types; } // we are on signup page. // do something with member types(add/remove). return $member_types; });You can adapt it as you need.
Regards
Brajesh - Brajesh Singh on May 18, 2022 at 6:24 pm in reply to: [Resolved] Who’s Online widget adjustment #45003
Hi,
Thank you for the questions.1. You are doing it correctly.
2. Please make sure to put the following code at the beginning of your function
if ( ! is_user_logged_in() || empty( $args['type'] ) || $args['type'] !='online' ) { return $args; }That will make sure it does not affect your main loop.
Regards
Brajesh