Replies
- Brajesh Singh on November 3, 2019 at 11:56 am in reply to: [Resolved] BuddyPress Group Activities Notifier 1.0.5 (Opt out Option) #26254
Hi Hans,
Thank you for the suggestion.At the moment, we do not have any intention to further develop this plugin.
I am sorry, we won’t be adding any new features to i.
Regards
Brajesh - Brajesh Singh on November 2, 2019 at 12:32 pm in reply to: When will Community Builder 2.0 will be ready? #26248
Hi Hans,
It is a private release for now.Please visit Your account->Membership->Themes and you will see it under the Community Builder.
Regards
Brajesh - Brajesh Singh on November 1, 2019 at 10:50 pm in reply to: [Resolved] Profile Info in Members List #26243
Hi Hans,
The above code does not contain any stylistic markup. So, I am a bit confused.Can you please share me 1-2 screen shots(s) and help me understand the issue and desired solution.
Regards
Brajesh - Brajesh Singh on November 1, 2019 at 10:48 pm in reply to: [Resolved] BuddyPress Moderation 1.2.4 release, a couple issues. #26242
Hi Gregg,
The release introduced a filter like thisapply_filters( 'bpmts_is_user_whitelisted', is_super_admin( $user_id ), $user_id );You can use the filter to white list users(I believe I noted it in the release note).
We plan to gradually enhance this and add a section in settings to whitelist users too.
Regards
Brajesh - Brajesh Singh on November 1, 2019 at 10:46 pm in reply to: When will Community Builder 2.0 will be ready? #26241
Hi,
We have released Community Builder 2.0 beta 1. It is fully functional theme and may be used on sites.We are still polishing some features and working on 3rd party BuddyPress plugin compatibility. Try using customizer to create your experience. I hope it is a pleasant experience.
PS:- In next update, there will be more itme header styles(currently, we have 2). We also plan to add more item nav styles(currently 4).
There are also some plugins like GIPHY, activity/members/groups sliders, user embed in activity, upload avatar/cover from anywhere that we will be releasing in coming weeks.
We are also working on Emoji support plugin, but we do not have any ETA for it.
PS:- The theme is available under the Community Builder associated downloads section.
Regards
Brajesh - Brajesh Singh on November 1, 2019 at 3:25 pm in reply to: [Resolved] BuddyPress Moderation 1.2.4 release, a couple issues. #26236
Hi Gregg,
Your upgrade failed due to some reason and that’s why you had issues. I recommend upgrading again to 1.2.4.I downloaded and checked it and It is working fine. So, I am assuming, it might be a temporary glitch.
Regards
Brajesh - Brajesh Singh on November 1, 2019 at 11:28 am in reply to: [Resolved] Profile Info in Members List #26234
Hi Hans,
Try removing the lineecho '</div>';from both of these. Your display should be fine without any memberurl(most probably).
Regards
Brajesh - Brajesh Singh on November 1, 2019 at 11:26 am in reply to: [Resolved] Buddypress Anonymous Activity #26233
You are welcome 🙂
I am glad it is working.Regards
Brajesh - Brajesh Singh on October 31, 2019 at 12:33 pm in reply to: [Resolved] Buddypress Anonymous Activity #26227
Hi Nicola,
I am sorry, You have waited too long on this.Please remove any custom code you used earlier and put this in your bp-custom.php
/** * Filter is anonymous activity should be allowd. * * @param bool $is is enabled. * * @return bool */ function bp_custom_anonymous_is_enabled_for_group( $is ) { if ( ! bp_is_group() ) { return $is; } $enabled_groups = array( 'alpha-beta', 'abs', 'group-slug-3' );//group slugs $group = groups_get_current_group(); if ( in_array( $group->slug, $enabled_groups ) ) { $is = true; } else { $is = false; } return $is; } add_filter( 'bp_anonymous_is_valid_screen', 'bp_custom_anonymous_is_enabled_for_group' );Please make sure to change the slug with appropriate once and It will work.
Regards
Brajesh - Brajesh Singh on October 31, 2019 at 12:12 pm in reply to: [Resolved] Revert back to old registration form or password box #26226
Hi,
Try this
https://wordpress.org/plugins/wp-rollback/Regards
Brajesh