Replies
- Ravi on August 5, 2021 at 8:28 am in reply to: [Resolved] How to remove member from a groups forum when member is removed from the group? #39952
Hello Torben,
Please try the following code:
add_action( 'groups_remove_member', 'cci_auto_unsubscribe_forum', 10, 2 ); add_action( 'groups_leave_group', 'cci_auto_unsubscribe_forum', 10, 2 ); // function triggered when user leaves group function cci_auto_unsubscribe_forum ( $group_id, $user_id ) { // checks to see if there's a user ID if( !$user_id ) return false; // Get's an array of forum IDs for the group $forum_ids = bbp_get_group_forum_ids( $group_id ); // checks to see if there is a forum ID if ( !empty( $forum_ids ) ) { // gets the first value from the array, assuming there is one forum $forum_id = array_shift( $forum_ids ); } // subscribes user to forum bbp_remove_user_forum_subscription( $user_id, $forum_id ); }
Let me know if it works or not.
Regards
Ravi - Ravi on August 5, 2021 at 6:58 am in reply to: [Resolved] How to remove member from a groups forum when member is removed from the group? #39949
Hello Torben,
Thank you for posting here. Please try on the following action:
do_action( 'groups_remove_member', $group_id, $user_id );
Let me know if it helps or not.
Regards
Ravi - Ravi on August 5, 2021 at 6:31 am in reply to: Activity Shortcode, Read more option redirecting users to members profile page #39948
Hello Sherman,
Thank you for posting here. As you are using BuddyBoss activity shortcode they are in a better position to assist with this issue. Please try contacting BuddyBoss support for this issue.
Regards
Ravi Hello Dave,
Can you please share the error you are getting when trying to upload a doc file? Also, Let me know where you are trying to upload the doc file. I have tried uploading doc files on the activity directory on my development server and it is uploading with no error.
Regards
Ravi- Ravi on August 4, 2021 at 6:45 am in reply to: Auto join user to group based on email domain extension #39937
Hello Pooria,
We have released the newer version of the plugin. Please download the latest version and give it shot.
Regards
Ravi - Ravi on August 2, 2021 at 6:56 am in reply to: [Resolved] BuddyPress – blocked user can still tag the user who blocked them within a group #39893
Hello Nifty,
Thank you for the acknowledgment. I am glad that I could help.
Regards
Ravi - Ravi on August 2, 2021 at 6:30 am in reply to: [Resolved] BuddyPress Member Types Pro, Conditional field issue on registration form #39892
Hello Marcel,
Thank you for the acknowledgment. I am glad that the issue is resolved. Please do share the changes you have done to make things work correctly.
Regards
Ravi - Ravi on July 30, 2021 at 5:43 pm in reply to: [Resolved] BuddyPress Member Types Pro, Conditional field issue on registration form #39860
Hello Marcel,
Sorry for the inconvenience. I have checked the conditional registration field with BuddyPress Member Types Pro 1.4.8 and BuddyPress 9.0.0 and it seems it is working fine for me. Please take a look at the following working video.
https://www.awesomescreenshot.com/video/4672677?key=aea8ec49c0da043bb5d97d4c791c7483
Please try after deactivating other plugins except for BuddyPress and Member types Pro and switching to the default theme temporarily.
Regards
Ravi - Ravi on July 30, 2021 at 11:29 am in reply to: Move ‘block’ button from member header actions to elipses #39849
Hello Pooria,
Thank you for the acknowledgment. Please also let me know if you are using “BuddyPress Block Users” or BuddyBoss Blocking member feature.
Regards
Ravi - Ravi on July 30, 2021 at 8:01 am in reply to: [Resolved] BuddyPress – blocked user can still tag the user who blocked them within a group #39845
Hello Nifty,
The newer version is available now. Please check and let me know if it works or not.
Regards
Ravi