Replies
- 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 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- Brajesh Singh on September 28, 2024 at 7:52 am in reply to: “Post Visiblity” in translation file is not Buddyblog Pro translation file #53215
Thank you.
I will update you on Monday.Regards
Brajesh - Brajesh Singh on September 27, 2024 at 11:07 pm in reply to: [Resolved] PHP warning when activating plugin BuddyPress Profile Data Control #53211
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 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
BrajeshHi George,
Thank you.Do you want to remove it from group creation?
Regards
Brajesh- Brajesh Singh on September 27, 2024 at 10:10 pm in reply to: [Resolved] Changing the generic “Registering for this site is easy” tag line. #53207
Hi Carsten,
Welcome back.That is applicable to BuddyPress classic template pack.
Are you using Nouveau or classic?
Regards
Brajesh