BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24599

    Hi Alex,
    Thank you.

    I sincerely appreciate your patience and help.

    yes, there was a bug in the plugin which caused it. If there were restrictions on name field, we were using bp_get_activity_user_id() while checking if name is displayable or not. At the time it was used, BuddyPress activity template was not initialized(we were using it to filter activity before it was used with the template).

    I have fixed it by using the user id directly on the activity object. If you activate this plugin(In case you needed it in future), There won’t be any notice.

    Thank you for your help in troubleshooting it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599

    Hi Carsten,
    Thank you for the details.

    The Nouveau doe snot keep it in the templates.

    1. If you want to disable/remove it, You can use the following code

    https://buddydev.com/support/forums/topic/hide-register-text-in-bp-regsiter-form/#post-32463

    2. Or if you want to change it, You can use this code instead.

    
    add_filter( 'bp_nouveau_feedback_messages', function ( $args ) {
    
    	if ( ! isset( $args['request-details'] ) || ! is_array( $args['request-details'] ) ) {
    		return $args;
    	}
    
    	$args['request-details']['message'] = 'Thank you for your interest in registering...';// please change it.
    
    	return $args;
    } );
    
    

    Please feel free to customize as you need.
    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599
    Brajesh Singh on in reply to: Plugin works? #53222

    Hi Pavel,
    As far as our plugin, https://buddydev.com/plugins/buddypress-block-users/ is concerned, It should work fine with Gwangi.

    We had tested it till last year with that theme. Haven’t tested with it this year, but I don’t see any issue. In case you find any issue. Please report and we will fix it within 2 working days or issue the refund.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599

    Hi,
    Thank you for your question.

    1. For our plugin(BuddyPress multuinetwork)
    a. deactivate and delete the plugin.
    b. visit phpmyadmin and search for ‘bp_mnetwork_users’ in the table name. Drop this table.

    2. For Member Types Pro:-
    a. deactive and delete the plugin.
    b. Use any of the cleaning plugin and delete ‘bp-member-type’ post type

    For BuddyPress, There is no definitive guide to clean. You can deactivate the plugin and look for _bp_ tables to delete. There are still user meta/options which might remain. I will suggest asking on BuddyPress.org forums for the same.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599
    Brajesh Singh on in reply to: Plugin works? #53217

    Hi Pavel,
    Welcome to Buddydev support forums.
    Thank you for your interest in the plugin.

    1. Are you using BuddyPress or BuddyBoss
    2. Which theme and template pack are you using.

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599

    Thank you.
    I will update you on Monday.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599

    Hi Alex,
    Thank you for your assistance with the detailed screenshots and steps to reproduce. I am glad you have found a custom solution too.

    This plugin only stores ‘_bppc_available_roles’ for the fields and nothing else.

    In case the restriction is applied on full name field, this plugin filters activity as well as activity display name of the user/comment. I am still not sure why that will cause activity as null.

    I will be writing back to you with a lot more details and clarification on Monday about it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599
    Brajesh Singh on in reply to: How to hide group settings tab? #53210

    Hi George,
    BuddyPress extensions add their nav very differently(directly accessing globala nd won’t be available when teh above filter is used).

    Here is a temporary solution(It only hides nav links not the actual handler attached with the forum).

    
    add_action( 'bp_actions', function () {
    
    	$bp = buddypress();
    
    	if ( isset( $bp->groups->group_creation_steps ) ) {
    		unset( $bp->groups->group_creation_steps['forum'] );
    	}
    
    }, 10 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599
    Brajesh Singh on in reply to: How to hide group settings tab? #53208

    Hi George,
    Thank you.

    Do you want to remove it from group creation?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24599

    Hi Carsten,
    Welcome back.

    That is applicable to BuddyPress classic template pack.

    Are you using Nouveau or classic?

    Regards
    Brajesh