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
    Brajesh Singh on in reply to: Buddypress anonymous activity support #25426

    Hi Tosin,
    Thank you for confirming.
    We do have checkbox for comments currently.
    We can arrange to make it a checkbox in the next release for updates too.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Buddypress anonymous activity support #25424

    Please share how it looks on your site.
    You are free to use css to customize the UI as you want. Customn styles for checkbox/radio are not supported by browsers, so we do not supply custom styles. We use default radio box.

    When you are posting, you should see an option with 2 radio, post as “Anonymous” , “The actual name” with actual name being selected.

    Isn’t that happening?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Buddypress anonymous activity support #25422

    Hi Tosin,
    It uses a radio button under status. Please share a screenshot to show how it looks on your site. The old screenshot is not visible to me.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Milan,
    At the moment, It is not available. We have been planning it and It will be available in future. Currently, the way we handle uploads(using dropzone and other things), does not make it work properly.

    I did an experiment a few months ago
    https://github.com/buddydev/mediapress/tree/activity-comment-upload

    but I will not recommend using that branch currently. We need to change some internals to make it available in future.,

    Rergards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Thank you Milan.

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Array of user IDs for specific member type #25417

    Hi,
    Thank you for the question. I do not see a direct way to do it currently. BuddyPress does not have an API to fetch all user ids of a member type without fetching their all data(wp user info data). That is not efficient.

    If you still want it, I will post a sample with BP_User_Query.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Get a cover image automatically for a video like YouTube #25416

    Please do not change the whole function. Just comment one line out.

    From the original

    
    <?php mpp_upload_dropzone('activity');?>
    

    to

    
    
    <?php //mpp_upload_dropzone('activity'); ?>
    
    

    That should do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Buddypress anonymous activity support #25415

    Hi Tosin,
    I am sorry but the plugin is not intended for this purpose.

    The plugin allows users to go anonymous while writing new activity post/comment. It does not allow you to mark a user as anonymous.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Johan,
    Thank you for reporting.

    The integration is provided by us, so we will need to update and not Andrea.

    At the moment, I don’t see a proper solution. I will need to check and see if we can allow you excluding some member types.

    Please do note that directory availability of a member type has no bearing on the all list They are unrelated.

    Will putting a filter to allow you exclude some values work for now?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Hide member list/page from specific users #25413

    No Issues.

    Please remove these line

    
    bp_do_404();
    load_template( get_404_template() );
    exit( 0 );
    

    and replace them with

    
    bp_core_redirect( "http://yoursite_url");
    
    

    That will do it.

    Regards
    Brajesh