Replies
- This reply has been marked as private.
- This reply has been marked as private.
- This reply has been marked as private.
- Brajesh Singh on June 26, 2021 at 2:03 pm in reply to: [Resolved] How a user can unblock a blocked user #39284
Hi Daniel,
Thank you for the update. I am glad it is working now.it’s strange. Our update should have kept the buttons enabled by default. I will get them follow this behaviour in future.
Regards
Brajesh - Brajesh Singh on June 26, 2021 at 1:59 pm in reply to: [Resolved] BuddyBlog Pro: Confirmation before deleting a post and publish date #39283
Hi Martin,
I am marking this topic as resolved as we released the upgrade 6 weeks ago. Please feel free to open a new topic if you need any further assistance.Regards
Brajesh Hi,
Hope you are doing well.BuddyBlpg Pro now supports shortcode for create/edit page for any post type and allows creating posts from any standalone page using shortcode.
Please have a look.
https://buddydev.com/better-user-submitted-posts-for-buddypress-buddyboss-with-buddyblog-pro/Regards
BrajeshHi Tosin,
Hope you are doing well.We have added one of your suggestions to BuddyBlog Pro. You can allow users to create/edit posts from standalone page instead of the user profile.
https://buddydev.com/better-user-submitted-posts-for-buddypress-buddyboss-with-buddyblog-pro/
Regards
Brajesh- Brajesh Singh on June 26, 2021 at 1:52 pm in reply to: [Resolved] Add roles to users on new registration and first login #39280
Hi Tosin,
Thank you for sharing the details.You can simply change the line
add_action( 'wp_login', 'buddydev_redirect_on_first_login', -1, 2 );to
add_action( 'wp_login', 'buddydev_redirect_on_first_login', 0, 2 );and this should work.
Please let me know if it works for you or not?
Regards
Brajesh - Brajesh Singh on June 26, 2021 at 12:51 pm in reply to: Different Member Types, Different Display Names #39278
Hi,
I am sorry for the delay.You will need assistance from BuddyBoss support. I am unable to find time to assist you with BuddyBoss and other other plguins.
The above code is for BuddyPress.
Regards
Brajesh - Brajesh Singh on June 26, 2021 at 12:48 pm in reply to: One Click Spam Marker – Show for Editor role #39277
Hi Darren,
Thank you for the patience.Please upgrade to 1.1.2 and add the following code to your theme’s functions.php
/** * Delegate mark spammer capability to editor. */ add_filter( 'bp_ocms_can_moderate_users', function ( $can, $user_id ) { if ( user_can( $user_id, 'edit_others_posts' ) ) { $can = true; } return $can; }, 10, 2 );That will allow editors to mark users as spammer.
Regards
Brajesh