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: 25273
    Brajesh Singh on in reply to: [Resolved] Extended user groups plugin suggestion #6717

    🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Personal not linking to personal #6716

    Hi Chris,
    Thank you.

    Well, now I understand the reason too. It is because you are using the Facebook like activity stream. I will check and find a way.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: No Featured Image Option #6708

    Hi Justin,

    1. Please ask your theme developer. It is the theme css that is conflicting with WordPress media modelbox and causing it.

    2. I am sorry but at the moment, there is no way to do it. May be we can use some js and disable the submit button if the featured image is not selected, that won’t be a perfect solutin but will work for most of the cases.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Hide profile administrator #6707

    Hi Julien,
    There are multiple ways to do it.
    Here is one way(I just updated the above code)

    
    function bpdev_exclude_users( $qs = false, $object = false ) {
    
    	//if not members, let us return
    	if ( $object != 'members' ) {
    		return $qs;
    	}
    
    	$args = wp_parse_args($qs);
    	//we are looking into friends list if the user id is given, do not hide here
    	if ( ! empty( $args['user_id'] ) ) {
    		return $qs;
    	}
    
    	$excluded_users = get_users( array(
    		'role'      => 'administrator',
    		'fields'    => 'ID'
    	) );
    
    	if ( ! empty( $args['exclude'] ) ) {
    
    		if ( ! is_array( $args['exclude'] ) ) {
    			$args['exclude'] = explode( ',', $args['exclude'] );
    		}
    
    		$args['exclude'] = array_merge( $args['exclude'], $excluded_users );
    
    	} else {
    		$args['exclude'] = $excluded_users;
    	}
    
    	$args['exclude'] = join(',', $args['exclude'] );
    
    	$qs = build_query($args);
    
    	return $qs;
    
    }
    add_action( 'bp_ajax_querystring','bpdev_exclude_users', 20, 2 );
    
    

    Please put it in your bp-custom.php and all the admins will be invisible in the members directory.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Joshua,
    Thank you for the details. I did check the site and It seems perhaps you have figured out the registration link redirection.

    Still, if you are going to use BuddyPress, if you enable BP_ENABLE_MULTIBLOG in bp-custom.php, the registration page will be available per site basis. I will suggest that we redirect to the accounting site if it accessed from other sites

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    You are most welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Extended user groups plugin suggestion #6696

    Wow, is that the left block. Looks great 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Twitch Buddypress Integration #6695

    hahaha 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: No Featured Image Option #6694

    Hi Justin,
    Please put this in your css file

    
    a#remove-post-thumbnail, 
    #postimagediv a.thickbox {
        background: pink;
        display: inline-block;
        margin-top: 10px;
        padding: 10px;
    }
    
    

    Let me know if that works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Siyah,
    Thank you for the details.
    No, It is not caused by your environment. It is caused by one of the above plugins most probably. I am looking at it and will let you know soon.

    Thank you
    Brajesh