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

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

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

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

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25332

    Hi Sam,
    Thank you for the topic and sharing the details.
    Please allow me 1 -2 hour to check and get back to you.

    I have a question though:-
    Do you have any required field marked as conditional? Specially in base profile field group? A hidden required field may stop the submit button. I have mentioned in on our conditional section to avoid this issue.

    As of the code provided by Michael. It gives us the idea how to exclude certain type. Please allow me to look at it and see if it can cause the issue(That code snippet can not cause the issue, the plugin may do it).
    I will be writing back in 2 hours.

    PS:- About forking the plugin. Thank you for the suggestion and I appreciate it. It seems Michael has been managing and supporting it sincerely for so many years, It will be unfair for us to fork the plugin. We do hope that we can contribute to the plugin if you share your ideas with us.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    Brajesh Singh on in reply to: [Resolved] Can not translate some text #22313

    Hi Anders,
    Welcome to BuddyDev.

    Those Labels are values and you will need to edit them in the admin.

    1. Changing “Name”
    Please see
    https://youtu.be/wrG79YfqKKc

    2. Changing the “Base” profile field group name.
    Please see
    https://buddydev.com/translate-or-change-base-field-group-label-in-buddypress/

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332

    Hi Carsten,
    Is there any chance that you have the notifications module turned off? If you can share me an image of your settings->Email page, I can have a better idea.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332

    Hi Michaël,
    It is coming for sure. I will need a few more days as there are some other priorities. Hopefully, I should have it this Wednesday.

    Regards
    Brajesh

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