Replies
Hi Mike,
Welcome back.Thank you for the update. It’s good to know that it is fixed.
Regards
Brajesh- Brajesh Singh on March 23, 2020 at 10:46 am in reply to: Accept activity wall to be read only #28339
Hi Johan,
Thank you for the patience.Please update the allowed level with correct ids and you may use the following in your bp-custom.pp
add_filter( 'bp_activity_can_comment', function ( $can ) { $logged_id = bp_loggedin_user_id(); if ( ! function_exists( 'pmpro_getMembershipLevelForUser' ) || ! is_user_logged_in() || bp_get_activity_user_id() == $logged_id || is_super_admin() ) { return $can; } $level = pmpro_getMembershipLevelForUser( $logged_id ); if ( ! $level ) { return false; } $allowed_levels = array( 1, 2 ); if ( ! in_array( $level->id, $allowed_levels ) ) { $can = false; } return $can; } );Regards
Brajesh - Brajesh Singh on March 23, 2020 at 10:30 am in reply to: Front End / BuddyBlog – Issue when editing a post #28338This reply has been marked as private.
- Brajesh Singh on March 23, 2020 at 10:28 am in reply to: [Resolved] How do i set size on badged on memberlist #28337
Hi Theo,
I am sorry for the trouble.Please visit Dashboard->Appearance->Customize and click on “Additional Css”
Please add the following
.item-list .bp-user-badges-badge-list img { max-width: 32px; max-height: 32px; }That will fix it.
Regards
Brajesh - Brajesh Singh on March 23, 2020 at 10:26 am in reply to: "Conditional Profile Fields for BuddyPress" id missing issue … #28336
Hi Moose,
Thank you for the video and the patience.I have checked and I can see the issue.
You see that number(400 and other in the profile field list). It is used for generating the condition.
If you used a multi field value in condition, That id is the option id. It seems to me, after applying the condition, you probably updated the multi field(the field which was used for condition).
That made BuddyPress delete old options and add new options with different ids(if if the value is same).
That is causing the issue. If the plugin was unable to save value, It would not show them on the fields list screen.
PS:- We are planning multi condition in April/May.
Regards
Brajesh - Brajesh Singh on March 23, 2020 at 10:22 am in reply to: [Resolved] Buddypress activity reloaded + BuddyPress Group Email Subscription #28335
Hi Lars,
Thank you for reporting.We are using shortcode to generate the content.
They need to apply `do_shortcode’ to make it provide the generated content. Please do contact the developer of BP Group Email Subscription and ask if there is a way to apply shortcodes content generation.
Regards
Brajesh - Brajesh Singh on March 23, 2020 at 10:02 am in reply to: [Resolved] acceptance checkbox is not working #28334
Hi,
Welcome to BuddyDev.Thank you for using the plugin./
I had a look at your site. It is not using the default BuddyPress registration and that’s why it is not working.
You are most probably using a specialized them. Please contact theme author for the same.
Regards
Brajesh - Brajesh Singh on March 19, 2020 at 7:16 pm in reply to: Front End / BuddyBlog – Issue when editing a post #28323
Hi John,
Please give a try to our demo here
https://buddydev.com/themes/community-builder/It has BuddyBlog active. Are you able to reproduce the issue here?
Thank you
Brajesh Hi Tosin,
yes, It will affect that plugin.I am sorry, but there is no alternative. The live notification needs heartbat to work.
Regards
Brajesh- Brajesh Singh on March 19, 2020 at 7:13 pm in reply to: [Resolved] Open all external activity links in a new browser tab #28321
Hi Tosin,
Thank you for the question..
What is external link in activity(It is normal link added as text or added via some plugin?)Regards
Brajesh