Replies
Hi Nik,
Thank you for the question.1. You are quite right. This was how the plugin was originally designed(please see the name).
2. Yes, and this is coming within next 2 weeks hopefully(at least the beta). People will be able to create posts from their groups.
3. I am not sure about this. The problem is field type availability. We have limited set of field types available currently which may not be mapped(for example Map/Geo ) correctly to the corresponding field of the events plugin.
If you are interested, please help us list the missing field type and we will love to have them available for BuddyBlog Pro.
Regards
BrajeshHi Tosin,
Thank you for the question.what you are looking for is a subscription plugin. We have one coming at the end of September/mid of October for BuddyPress.
In the meantime, you may want to explore the existing solutions.
Regards
Brajesh- Brajesh Singh on July 24, 2022 at 7:55 pm in reply to: [Resolved] Disable activity comment button #45804
Hi Tosin,
Thank you for the question.You may want to put it in your bp-custom.php and see if it works
// Disable comment for all type except specified in the list. add_filter( 'bp_activity_can_comment', function ( $can, $activity_type ) { return in_array( $activity_type, array( 'new_classified', 'new_blog_post' ) ); }, 10, 2 );Regards
Brajesh Hi Igan,
Thank you for reporting it.Please allow us to investigate it on Monday/Tuesday and get back to you.
Regards
Brajesh- Brajesh Singh on July 24, 2022 at 7:50 pm in reply to: [Resolved] Page that shows only user with specific profile field value #45802
Hi Lobo,
If your goal is to search and list via xprofile fields, you may want to copy the members-loop.php and then changeif ( bp_has_members( bp_ajax_querystring( 'members' ) ) ) :with
if ( bp_has_members( array('xprofile_query' => array( array( 'field' => 1, 'value' => 'Some Name', ), ) )) ) :in the copied loop. Update the field id and the value as you need and it will list the members for you.
Regards
Brajesh Hi Nik,
You are welcome.Have a great day!
Regards
BrajeshHi Igan,
Welcome to BuddyDev support forums.It seems this was a temporary issue caused while upgrading the BuddyBoss plugin.
Please do keep an eye and if you get any such email again and let me know.
Regards
BrajeshHi Nik,
Thank you for using the plugin.1. The plugin filters group creation permission and there is no way to differentiate if the checks were made for showing button or before submission.
Your solution will be hardcode the Create group button in the buddypress/groups/index.php of your theme to always show it.
2. The users can access your create group step manually. If someone did, the redirect is used to send them at a different place if they have reached the limits.
Hope that helps
Regards
Brajesh- Brajesh Singh on July 22, 2022 at 11:04 pm in reply to: [Resolved] How to Add Name on Registration #45784
Hi Lisa,
I am sorry for the delayed reply.
I had a look at your site and I don’t see any other reason except the Better Experience plugin causing it.Can you please temporarily disable the BP Better Experience plugin and then check the registration page again?
Thank you
Brajesh Another solution for now will to trigger BuddyPress Edit profile action when you are done with the user setup.
That will run the hooks again.
Regards
Brajesh