Replies
Hi Corrado,
We haven’t been able to look into it completely. I will be updating you tomorrow with better information.Regards
Brajesh- Brajesh Singh on October 29, 2020 at 6:45 pm in reply to: [Resolved] Exclude buddypress and buddypress code in a specific page – Buddypress #34189
Hi Jkk,
Thank you for the question.You may want to look into this
https://wordpress.org/plugins/plugin-organizer/Regards
Brajesh - Brajesh Singh on October 29, 2020 at 6:44 pm in reply to: Admin can't see user galleries if private – Mediapress #34188
Please share the exact shortcode(with options) that you are using.
Regards
Brajesh - Brajesh Singh on October 29, 2020 at 6:44 pm in reply to: [Resolved] BuddyBlog throwing errors #34187
Hi Roberto,
I am sorry for the inconvenience.
Please visit Dashboard->Settigs->BuddyBlog and make sure to update the relevant settings and save. That will fix the notices.
Regards
Brajesh - Brajesh Singh on October 29, 2020 at 6:43 pm in reply to: Buddypress User Badges in Activity Feed #34186
Hi Ted,
Thank you for the patience.I had a look at the kleo theme and BuddyPress in general.
The display name in activity is not built dynamically and there are no hooks available there.
We can use this code to display the badges of activity author
<?php if ( function_exists( bp_user_badges_get_user_badges_html ) ) { echo bp_user_badges_get_user_badges_html( bp_get_activity_user_id() ); }But it needs to be put somewhere in the kleo/buddypress/activity/entry.php (You can copy this file to child theme) and put the code.
Regards
Brajesh - Brajesh Singh on October 28, 2020 at 6:42 pm in reply to: Buddypress User Badges in Activity Feed #34175
Thank you Ted.
Please allow me to check and get back to you by tomorrow.Regards
Brajesh - Brajesh Singh on October 28, 2020 at 6:41 pm in reply to: [Resolved] impossible to click the avatar in group dirctory #34174
Hi Corrado,
Thank you.
That’s good to know. I am glad you resolved it.Regards
Brajesh - Brajesh Singh on October 28, 2020 at 6:40 pm in reply to: [Resolved] Activity autoloader before it gets to the bottom #34173
Hi Benson,
Welcome to BuddyDev forums.At the moment, you can edit the js file and set it
https://github.com/sbrajesh/bp-activity-autoloader/blob/master/_inc/activity-loader.js#L21You can change 50 to may be 200 and that should work.
Regards
Brajesh Hi Robb,
I had a look.
You are not using BuddyPress Registration. The page you are linking seems to be a bbPress forums registration and this seems to be expected behaviour for bbPress forums.Regards
Brajesh- Brajesh Singh on October 28, 2020 at 4:31 pm in reply to: create a directory of member types who are currently online? #34169
Hi Bick,
Thank you.Sure, you can use this code for changing the time.
/** * Change the number of minutes used as interval for considering user online. */ add_filter( 'bp_user_query_online_interval', function ( $interval_in_minutes ) { return 5;// 5 minutes. } );Please put it in wp-content/plugins/bp-custom.php or your-current-active-theme/functions.php
Regards
Brajesh