Replies
- Brajesh Singh on March 23, 2020 at 5:58 pm in reply to: [Resolved] BuddyPress Activity Shortcode exclude #28349
You are welcome.
Hi Philippe
Thank you for checking.In that case, I will suggest contacting your theme developer and requesting for a fix.
Regards
Brajesh- Brajesh Singh on March 23, 2020 at 5:57 pm in reply to: continue reading / mediapress / Activity ShortCode #28347
Hi Philippe,
Thank you for the topic.This is by design in MediaPress( we link activity permalink to the gallery/media page).
I will remove it in the next version and that will make it normal for all existing activity too.Regards
Brajesh 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