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: 25454

    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: 25454
    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: 25454
    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: 25454
    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: 25454

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Jerry,
    Thank you for purchasing the plugin.

    1. Please add the class to the link you want to trigger the form.

    2. Are they part of your BuddyPress Profile group? If yes, They will be automatically loaded. If no, Please copy ‘ajax-register-form.php’ to your theme and modify it as you please.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: BP Deactivate Account and friends request #4554

    Hi Gabry,
    Thank you.
    I looked at it and I see that this plugin needs some more attention(Editing profile/Accessing settings etc should be disabled too).

    I am thinking of implementing it in another way instead, what if a disabled user can login but only visit settings->account status page?

  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Dandy,
    Thank you for confirming that it is working.

    Marking this topic as resolved. I will update that widget again today to have the last active time.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Dandy,
    Here is the updated language file where I have changed the Gallery to Album in the nav
    https://dl.dropboxusercontent.com/u/6190513/languages-mpp-d-1.0.5.zip

    PS: Please update line 1242 with your string to change it again.

    Hope that helps.

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

    Hi Nacho,
    I have fixed the issue. Please update the BuddyPress Xprofile Member Type Field plugin and it will be fixed.
    https://buddydev.com/plugins/bp-xprofile-member-type-field/

    Please do let me know if it works for you or not?

    Thank you
    Brajesh