BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25058

    You are welcome.
    I hope it goes well.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25058

    Hi Carsten,
    Thank you for the reply. I personally prefer troubleshooting to understand the root issue. I still understand the time concerns and I am happy that the others solution is working for you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25058
    Brajesh Singh on in reply to: Change Coverphoto in Groups Bug #53237

    Hi Daniel,
    Welcome back.

    I am sorry, I just checked your other mail. If you still need to reset the password for the old account, Please let me know.

    Have you updated BuddyPress recently? Try installing BP Classic plugin and let me know if that works.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25058
    Brajesh Singh on in reply to: Update BuddyPress Xprofile Custom Field Types #53236

    Hi Newton,
    Welcome to BuddyDev.

    I am sorry, we lack resources to add support for upload fields(files/image) with BuddyPress 14.0.

    We are updating the plugin’s readme to reflect that.

    BuddyPress team has been breaking backward compatibility without any regard for the existing code. The direction it moving in is making it difficult for 3rd party developers to continue adaption without adding much value on their own.

    I apologise for the inconvenience. We will update the readme by Monday to reflect it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25058

    Hi Carsten,
    Thank you for the question.

    I will suggest switching theme and disabling bp-custom.php to check it. It is probably caused by one of these two.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25058

    Hi,
    If you did template override, It should be in buddypress/members/register.php

    If you used BP Nouveau, It should be in your theme’s functions.php or bp-custom.php in wp-content/plugins directory.

    Hope you are able to locate it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25058

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

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

    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