Replies
Hi Simon,
hope you are doing well.
I am sorry, I am a day delayed on this.
I have it implemented but I do need some help from you on a decision.Here is what I am doing.
1. If there are no roles selected and we have specified some scoped users, the tab is enabled only for these users.
2. If ‘None’ is selected, the tab is always deleted. It get scoped to deletion of tab for specific users if the users are associated with tab.
3. If ‘All Members’ is selected and also some users are associated with tabs, what should we do? should we show tab for all users. should we show tab for scoped users only?
4. If One or more roles are selected and some users are associated with the tabs, should we show tabs for all users with the specified roles + scoped users or all users specified in the scope list which have those roles?
Please help me with the last two question and I will push the release.
Regards
Brajesh- Brajesh Singh on April 12, 2023 at 8:42 am in reply to: BuddyBlog Pro – override Submit Post for Review #49200
Hi Nik,
Thank you for the feedback.My changes are limited to Group Blog and have no affect on how BuddyBlog Pro works.
I haven’t updated BuddyBlog and the last changes were limited to Group posts only.1. Admin notifications.
Sorry the line should have been thisif ( get_current_user_id() == $post->post_author && is_super_admin() ) { return; }
not
if ( get_current_user_id() == $post->post_author ) { return; }
An update will be available today for this.
2. Group admins still receive the author notification:- That is correct. We do’t have UI to disable and I can’t disable it for specific use case as there is a possibility group admins might not have the ability to publish for some of the setup.
I put a filter there yesterday ‘bblpro_groups_post_submission_notify_author’You can use it like.
// disables author notification for group admin. add_filter( 'bblpro_groups_post_submission_notify_author', function ( $notify, $author, $post, $group_id, $form_id ) { if ( groups_is_user_admin( $author->ID, $group_id ) ) { $notify = false; } return $notify; }, 10, 5 );
3. Can you please help me understand this
Those posting in group with admin or editor permissions are handled in the same way as “regular” group members (ie. non group admins)
Should we treat them differently?
I am not using roles as I the purpose of BuddyBlog pro/Group blog is for community posts and not editorial content of the site.Regards
Brajesh - Brajesh Singh on April 11, 2023 at 7:24 pm in reply to: BuddyBlog Pro – override Submit Post for Review #49195
Hi Nik,
Thank you for the reply.
I am glad I was able to spend sometime and have a fix.Please do share the results of your testing. For the multiple group admins, if it not a big hassle, Please allow me to put the fix in next update(It will be just 1 line change but we are already on RC7 so trying to avoid another 1 line update release).
All the best with your launch!
Regards
Brajesh - Brajesh Singh on April 11, 2023 at 6:30 pm in reply to: BuddyBlog Pro – override Submit Post for Review #49193
Hi Nik,
Thank you for the reply.
Please upgrade to 1.0.0-rc7.This update will disable self notification to group admin/site admin for post approval, rejection, submission.
If in a group, there are 4 group admins and one of them submits the post, the other 3 will still get a submission notification.
Do you want to disable that too?
PS:- The code from Ravi is no longer needed for site admin/group admin notification prevention.
Regards
Brajesh - Brajesh Singh on April 10, 2023 at 6:13 pm in reply to: BuddyBlog Pro – override Submit Post for Review #49185
Hi Nik,
Thank you for the reply and sharing the details.
When are you going live this week? I can try to release it before that.Thank you
Brajesh - Brajesh Singh on April 10, 2023 at 5:59 pm in reply to: [Resolved] BuddyBlog Pro/Groups – Rejections #49183
Hi Nik,
Thank you for the reply 😀
You can allow group admins to approve/reject and then 2 links with approve/reject will appear on the posts list in group when a group admin or site admin is viewing the posts list.
Hope that helps.
Regards
Brajesh - Brajesh Singh on April 10, 2023 at 5:10 pm in reply to: [Resolved] BuddyBlog Pro/Groups – Rejections #49181
Hi Nik,
Thank you for your question.I am not sure if this is documented or not but if you publish a post, It will be published irrespective of approval/rejection status. Admins/editors have super powers.
Our workflow for a rejected post is to keep post status to pending.
If you do it as group admin/site admin from front end, It will be set to pending.
If you want to do it form backend, you will need to set status to “Pending” from post status and update.We are not deleting the post as our assumption is users can edit and re-submit them for approval. We will delegate the status decision to site admins in future.
Hope that clarifies.
Regards
Brajesh - Brajesh Singh on April 10, 2023 at 5:06 pm in reply to: the delete function of galleries has a big bug #49180
Hi Maurice,
Thank you.
We will be testing it again this week. We have tested in past and did not see any such issue. I will have at least 2 different people test it this week to see if they can replicate.
If it is a replicable bug, we will fix it.Regards
Brajesh Hi Van,
If you put it in your bp-custom.php, It will remain there and will not get affected by BuddyBlog updates.For the user url linking, Please disable showing post on profile and it will work.
Regards
Brajesh- Brajesh Singh on April 10, 2023 at 4:55 pm in reply to: BuddyBlog Pro – override Submit Post for Review #49178
Hi Nik,
We are reviewing your previous reply and the issue with self notification. I am expecting a final publish next week.The reason we haven’t published BuddyBlog group yet is the complexity. With too many options, there comes huge complexity and that has been one of the reason to hold back.
We are still not sure how we handle this as we do need settings at admin level as well as group level.We will be auditing BuddyBlog groups this week and I will push the update by early next week.
Thank you
Brajesh