Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    You are welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Mediapress Upload Edge #28348

    Hi Philippe
    Thank you for checking.

    In that case, I will suggest contacting your theme developer and requesting for a fix.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Troubleshooting my site #28340

    Hi Mike,
    Welcome back.

    Thank you for the update. It’s good to know that it is fixed.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on 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