Replies
- Brajesh Singh on March 5, 2019 at 8:42 am in reply to: [Resolved] Buddypress activity autoloader plugin – problem of activity being repeated #21309
Hi Edward,
I am sorry, the issue is related to your theme.The auto loader plugin simply simulates click on load more. It is exactly same as a person clicking on “Load more” button.
Please disable it and give a ty to clicking load more.
As far as I understand, this needs to be resolved in the theme.
Regards
Brajesh Hi Thibault,
Is there any chance that the user was searching? Since the user is not excluded from search, they will appear if somehow they are being searched or search term is set on the page.Please do visit that user’s profile and check if the options for that specific user is set correctly or not?
PS:- Did the user registration happened as normal or did you add the user from dashboard?
Thank you
Brajesh- Brajesh Singh on March 4, 2019 at 10:02 pm in reply to: User Contact Form Mandatory fields and inidicators message sent #21303
Hi Barry,
That path will be buddypress/members/single/bpucf-form.phpWe need the following lines at its top
<?php if ( ! did_action( 'template_notices' ) ) : ?> <?php do_action( 'template_notices' ); ?> <?php endif; ?>It checks if notices action was not called, calls them.
Regards
Brajesh - Brajesh Singh on March 4, 2019 at 9:46 pm in reply to: [Resolved] BP Members With Uploaded Avatars Widget no longer showing members #21301
Hi Kuni,
I am sorry for the inconvenience. Please allow me to check it and post an update to you by tomorrow.Regards
Brajesh - Brajesh Singh on March 4, 2019 at 9:36 pm in reply to: [Resolved] Hiding activity for just one specific user #21300
Hi Kristian,
You can use the following
/** * Exclude a user's activity from listing. * * @param array $args args. * * @return array */ function buddydev_exclude_single_user_activities( $args ) { $args['filter_query'] = array( array( 'column' => 'user_id', 'value' => 46, // update with your own user id. 'compare' => '!=', ), ); return $args; } add_filter( 'bp_after_has_activities_parse_args', 'buddydev_exclude_single_user_activities' );Regards
Brajesh - Brajesh Singh on March 4, 2019 at 9:35 pm in reply to: User Contact Form Mandatory fields and inidicators message sent #21299
Hi Barry,
I a sorry for the inconvenience. Is there any chance that you had copied the template for form from the plugin to your theme or child theme?Regards
Brajesh - This reply has been marked as private.
- This reply has been marked as private.
Hi Keith,
Thank you for the question.The problem seems related to your email delivery(probably users are not receiving activation mail). My suggestion will be to test the email delivery.
Something like this plugin can help in testing.
https://wordpress.org/plugins/check-email/If it is working and the mail is still not being sent, you can enable the wp_mail instead of custom bp email.
About BP Auto Activate Auto Login, It will work with any recaptach plugin that works on BuddyPress registration page.
Regards
Brajesh- Brajesh Singh on March 4, 2019 at 10:12 am in reply to: [Resolved] Xprofile Field Types – File Upload #21286
Hi Vivek,
Please see my reply here
https://buddydev.com/support/forums/topic/buddypress-xprofile-fields-2/#post-21285
Regards
Brajesh