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: 25485
    Brajesh Singh on in reply to: BP Editable Activity – log & notifications #22338

    Hi Vivek,
    Thank you for the topic.

    1. It is not available currently. We let admins decide to keep the log for future audits. A UI is planned for later.
    2. I am adding it partially on or feature list. Will let admin show the “Edited” message in future release.
    Notifying about the editing is currently not on our plan. This may make things way too complex.

    Let us see how the popular networks like facebook does it(it shows the diff) but I am not sure if it notifies about the change. If it does, we will certainly plan adding it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: BP FB like activity stream plugin #22337

    Hi Vivek,
    Are you using any code or plugin for filtering activity or removing activity?

    The plugin should work fine with the filters fine.

    Please let me know the details and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Question – Active CSS by user #22334

    You are welcome 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Sam,
    It is most probably an issue with how the Conditional fields work in conjunction with required fields.

    Please visit Dashboard->Users->Profile Fields and click on the First field group.

    Please share me a screenshot of the fields list there. I am assuming it is caused by Member Types pro(conditional registration).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Daniel,
    Welcome back.

    Can you please try a new upload and see if it works or not?
    1. The gallery privacy may override an image privacy. Please make sure that gallery and image both have privacy which are accessible to the user(loggedin or public).

    Also, changing the settings does not apply to existing uploads retrospectively. It will only apply on new uploads.

    Please give a try and let me know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Plamen,
    Thank you for sharing.

    If it was working earlier, I can certainly help you making it work again. I am leaving my desk for next 2-3 hours. Will be replying after that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Giulietta,
    I am sorry for not replying earlier.

    I am not sure how do we go about debugging it as it seems to be an issue with codec. I am looking at another way to accomplish it. Using a microservice for the transcoding instead of our current implementation.

    I will be getting back to you tomorrow with more details.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Plamen,
    Thank you for the question.

    At the moment it is not doable in BudyPress out of the box(efficiently as someone might first fetch post ids and then show a working proof).
    If you need to do it, you will need to record the term id along with the activity. In other words, you will need custom code for keeping a sync between the post categories(on new post/update post) and then register new activity actions for each category.

    This is doable but you will most probably need assistance from a developer to accomplish it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Sam,
    Here is the slightly modified code from the example you linked

    
    
    function bpro_custom_per_member_type_moderation_override( $user_id ) {
    	$member_types = bp_get_member_type( $user_id, false );// get an array of member types.
    
    	if( empty( $member_types) ) {
    		return;
    	}
    
    	$non_moderated_member_type = "student"; //please change it.
    	if ( in_array( $non_moderated_member_type, $member_types, true ) ) {
    		bp_registration_set_moderation_status( $user_id, 'false' );// disable moderation.
    	}
    
    }
    add_action( 'bp_core_activated_user', 'bpro_custom_per_member_type_moderation_override', 9 );
    
    

    Please make sure to change the non moderated member type and it should work.

    Also, For the disabling of the submit, Please look for the field marked as required in the Base/Frist profile field group.

    Regards
    Brajesh