Replies
- Brajesh Singh on October 3, 2024 at 5:47 pm in reply to: [Resolved] How to completely remove Buddydev plugins including deleting all files? #53239
You are welcome.
I hope it goes well.Regards
Brajesh - Brajesh Singh on October 3, 2024 at 5:46 pm in reply to: [Resolved] Unmarking “Use this field in the site registration form” option not working #53238
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 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- Brajesh Singh on October 3, 2024 at 5:43 pm 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 - Brajesh Singh on October 2, 2024 at 11:50 am in reply to: [Resolved] Unmarking “Use this field in the site registration form” option not working #53231
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 - Brajesh Singh on September 30, 2024 at 11:31 am in reply to: [Resolved] Changing the generic “Registering for this site is easy” tag line. #53226
Hi,
If you did template override, It should be in buddypress/members/register.phpIf 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 - Brajesh Singh on September 30, 2024 at 11:24 am in reply to: [Resolved] PHP warning when activating plugin BuddyPress Profile Data Control #53225
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 usingbp_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 - Brajesh Singh on September 30, 2024 at 9:16 am in reply to: [Resolved] Changing the generic “Registering for this site is easy” tag line. #53223
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 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- Brajesh Singh on September 30, 2024 at 9:07 am in reply to: [Resolved] How to completely remove Buddydev plugins including deleting all files? #53221
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 typeFor 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