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: Multisite & MediaPress Issues #4599

    Hi Mike,
    Thank you for posting.

    1.It seems you have BuddyPress with MultiBlog mode enabled. MediaPress uses normal WordPress attachment as media file, that means the media files are specific to the sub blogs/sites on the network. I am sorry, but MediaPress does not support having all Media at one site in case of Multi Blog mode.

    Also, I noticed that perhaps you are using RT Media/mediaPress both. Please only use one of these.

    About Blank White Space:- The space is for listing comments. I am sorry but the current MediaPress does not allow removing it. I will have it fixed in another update. For now, you can use css to fix it.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] BuddyPress Group Widget #4590

    Thank you Dandy 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Walter,
    Welcome to BuddyDev.
    Yes, you can have multiple field but it will not be of any use. The problem is we are syncing actual member type with the field data, so the last field will win and have the user’s member type set as that.

    Please see the image here
    https://i.imgur.com/DJTHtKS.png

    PS: BuddyPress does allows user to have multiple member type, but this plugin does not support it.

    Hope that clarifies.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] BuddyPress Group Widget #4581

    Hi Dandy,
    Please upgrade to 1.0.3
    https://buddydev.com/plugins/bp-extended-user-groups-widget/

    I have added the last active time as suggested by you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Javier,
    Thank you for posting.

    The problem is when you have enabled it for Admins only, the plugins checks using is_super_admin() function. Since you are on a non multisite WordPress, WordPress checks for ‘delete_users’ capability and if a user has this capability they are assumed super admin, this is why you are seeing it.

    To remove the adminbar menu, you can put the following in your above function

    
    
    global $wp_admin_bar;
    $wp_admin_bar->remove_node( 'my-account-profile-visibility' );
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] BuddyPress Activity Spam #4577

    Hi Lavish,
    Do you have akismet enabled? Some of the spams will be handled by it. Also, I do recommend limit activity posting rate(We have a plugin for that). Setting the limit to say 3 posts per minute is not going to affect normal users but will be a preventing some spam.

    There are other measures too like using certain parameters( age of registration, no. of friends etc) that can be used but it all depends on the target site. On BuddyDev, we had a lot of message/mention spam, so we disabled mention for non friends(only admins can be mentioned if not friends) and did a few more things to make spammers effort meaningless.

    I will suggest first thinking about some criteria and then writing code to make all users adhere to the criteria.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Public media upload #4576

    Hi Mike,
    Thank you for letting me know. I am happy that you found a solution for now. We are working on collaborative gallery addon and soon MediaPress will have it as a supported feature too.

    Marking the thread as resolved.

    regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] HI URGENT PROBLEM #4574

    Thank you for the kind words Nacho. I am glad It is fixed 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Leo,
    I am sorry for not looking at it earlier.

    Today, I looked at it.
    Here is what I did.
    1. I registered a custom post type article like this

    
    
    function buddydev_register_post_types() {
    	
    	register_post_type( 'articles', array(
    		'labels' => array(
    			'name'			=> 'Articles',
    			'singular_name' => 'Article',
    			
    		),
    		'public'	=> true,
    		'slug'		=> 'articles',
    		'supports'	=> array('title', 'editor', 'thumbnail', 'author'),
    	) );
    }
    add_action( 'init', 'buddydev_register_post_types' );
    

    Then I went to BuddyBlog settings and chose this post type as selected.

    After that I tried to upload with Subscriber User account and It worked perfectly.

    Note:- I am using latest version of BPSFEP, BuddyBlog, BUddyPress, WordPress and testing it on non multisite.

    From the above test, I believe you are using some 3rd party plugin that has been conflicting with permissions and causing it.

    Can you please check by disabling a few or replicating on a test server?

    Thank you
    Brajesh