Replies
- Brajesh Singh on April 16, 2019 at 4:18 pm in reply to: BP Editable Activity – log & notifications #22338
Hi Vivek,
Thank you for the topic.1. It is not available currently. We let admins decide to keep the log for future audits. A UI is planned for later.
2. I am adding it partially on or feature list. Will let admin show the “Edited” message in future release.
Notifying about the editing is currently not on our plan. This may make things way too complex.Let us see how the popular networks like facebook does it(it shows the diff) but I am not sure if it notifies about the change. If it does, we will certainly plan adding it.
Thank you
Brajesh Hi Vivek,
Are you using any code or plugin for filtering activity or removing activity?The plugin should work fine with the filters fine.
Please let me know the details and I will assist.
Regards
Brajesh- Brajesh Singh on April 16, 2019 at 3:22 pm in reply to: [Resolved] FEATURE IDEA – Plugin Recent Visitors For BuddyPress Profile #22336This reply has been marked as private.
- Brajesh Singh on April 16, 2019 at 3:20 pm in reply to: [Resolved] Question – Active CSS by user #22334
You are welcome 🙂
- Brajesh Singh on April 16, 2019 at 2:29 pm in reply to: Possible bug exposed via BP Member Types Pro & BP Registrations Options plugin #22333
Hi Sam,
It is most probably an issue with how the Conditional fields work in conjunction with required fields.Please visit Dashboard->Users->Profile Fields and click on the First field group.
Please share me a screenshot of the fields list there. I am assuming it is caused by Member Types pro(conditional registration).
Thank you
Brajesh - Brajesh Singh on April 16, 2019 at 2:27 pm in reply to: [Resolved] Pics not showing when setting Public View in Settings #22332
Hi Daniel,
Welcome back.Can you please try a new upload and see if it works or not?
1. The gallery privacy may override an image privacy. Please make sure that gallery and image both have privacy which are accessible to the user(loggedin or public).Also, changing the settings does not apply to existing uploads retrospectively. It will only apply on new uploads.
Please give a try and let me know.
Regards
Brajesh - Brajesh Singh on April 16, 2019 at 11:35 am in reply to: [Resolved] Activity Sitewide stream filter posts by category #22322
Hi Plamen,
Thank you for sharing.If it was working earlier, I can certainly help you making it work again. I am leaving my desk for next 2-3 hours. Will be replying after that.
Thank you
Brajesh - Brajesh Singh on April 16, 2019 at 11:30 am in reply to: Transcoder plugin for .mov file (of Brajesh) does not work for my website #22320
Hi Giulietta,
I am sorry for not replying earlier.I am not sure how do we go about debugging it as it seems to be an issue with codec. I am looking at another way to accomplish it. Using a microservice for the transcoding instead of our current implementation.
I will be getting back to you tomorrow with more details.
Thank you
Brajesh - Brajesh Singh on April 16, 2019 at 11:27 am in reply to: [Resolved] Activity Sitewide stream filter posts by category #22319
Hi Plamen,
Thank you for the question.At the moment it is not doable in BudyPress out of the box(efficiently as someone might first fetch post ids and then show a working proof).
If you need to do it, you will need to record the term id along with the activity. In other words, you will need custom code for keeping a sync between the post categories(on new post/update post) and then register new activity actions for each category.This is doable but you will most probably need assistance from a developer to accomplish it.
Regards
Brajesh - Brajesh Singh on April 16, 2019 at 9:54 am in reply to: Possible bug exposed via BP Member Types Pro & BP Registrations Options plugin #22316
Hi Sam,
Here is the slightly modified code from the example you linkedfunction bpro_custom_per_member_type_moderation_override( $user_id ) { $member_types = bp_get_member_type( $user_id, false );// get an array of member types. if( empty( $member_types) ) { return; } $non_moderated_member_type = "student"; //please change it. if ( in_array( $non_moderated_member_type, $member_types, true ) ) { bp_registration_set_moderation_status( $user_id, 'false' );// disable moderation. } } add_action( 'bp_core_activated_user', 'bpro_custom_per_member_type_moderation_override', 9 );Please make sure to change the non moderated member type and it should work.
Also, For the disabling of the submit, Please look for the field marked as required in the Base/Frist profile field group.
Regards
Brajesh