Replies
- Brajesh Singh on May 5, 2021 at 4:37 am in reply to: [Resolved] BuddyPress Auto Friendship Pro Adjustment #38499
Hi Tosin,
Thank you for confirming.Regards
Brajesh - Brajesh Singh on May 5, 2021 at 4:37 am in reply to: [Resolved] Options in BuddyPress Xprofile Custom Field Types #38498
Hi Anders,
Please make sure you have friends component enabled. This is available out of the box by BuddyPress.Regards
Brajesh - Brajesh Singh on May 4, 2021 at 11:30 am in reply to: [Resolved] BuddyPress Auto Friendship Pro Adjustment #38492
Thank you.
1. Please upgrade to 1.0.5, It will make sure the auto follow works.
2. Please add the following code to bp-custom.php to avoid infinite loop
add_action( 'bp_force_profile_completion_skip_check', function ( $skip ) { if ( is_page( 36115 ) ) { $skip = true; } return $skip; }, 100 );Regards
Brajesh - Brajesh Singh on May 4, 2021 at 8:25 am in reply to: [Resolved] BuddyPress Auto Friendship Pro Adjustment #38490
Hi Tosin,
in order to assist you, I need to know what is “welcome” is it a page or post? Even better, can you please provide me its id. That will help me assist you with redirection issue.Regards
Brajesh - Brajesh Singh on May 4, 2021 at 6:31 am in reply to: [Resolved] Profile Visibility Manager not hiding profiles #38489
Hi Ian,
Thank you.Please put this code in your child theme’s functions.php or in wp-content/plugins/bp-custom.php
/** * Reset flag for group members list. */ function bp_profile_visibility_custom_reset_conditions_for_group() { if ( function_exists( 'bp_profile_visibility_loader' ) ) { bp_profile_visibility_loader()->set_data( 'is_visible', false ); } } add_action( 'bp_before_group_body', 'bp_profile_visibility_custom_reset_conditions_for_group', 100 ); add_action( 'bp_before_group_membership_requests_admin', 'bp_profile_visibility_custom_reset_conditions_for_group', 100 ); /* for nouveau, we need to use the filter instead*/ add_filter( 'bp_after_group_has_members_parse_args', function ( $args ) { if ( empty( $args['group_id'] ) || ! function_exists( 'bp_profile_visibility_loader' ) ) { return $args; } bp_profile_visibility_loader()->set_data( 'is_visible', false ); return $args; }, 100 );That will do it.
Regards
Brajesh Hi Tiffany,
Thank you for the suggestion.1. Do you want to randomize the list? or do you want to control who appears first?
2. We do have the ability to select by member type currently. We will be adding the role option in our future update.Regards
Brajesh- Brajesh Singh on May 2, 2021 at 10:45 am in reply to: Does suggested friends rotate suggestions? #38444
Hi,
The friends list will change when you have a new user who matches the criteria. We cache a specific suggestion rule for a user for 1 hour, so the list will update after that.Regards
Brajesh - Brajesh Singh on May 2, 2021 at 10:43 am in reply to: “Gamipress” + “BuddyPress User Profile Tabs Creator Pro” #38443
Hi Matheo,
Thank you.Please share your other BuddyDev username or email and I can look for it. Once confirmed, I will be looking into the shortcode to see if they have some option and how to assist you. Before spending time with 3rd party code, I need to confirm the order.
Thank you
Brajesh - Brajesh Singh on May 2, 2021 at 10:36 am in reply to: [Resolved] Profile Visibility Manager not hiding profiles #38442
Hi Ian,
Thank you for using the plugin.At the moment, this is by design for non public groups. For public groups, they should be hidden based on their preference.
Do you want to enforce it for non public groups too? I can supply a line of code for the same. Please let me know.
Regards
Brajesh Hi Russsel,
Thank you for letting us know. I am glad you have resolved it.
Regards
Brajesh