Replies
Hello Jerry,
Thank you for the details. As per your requirement you need the following plugin:
https://buddydev.com/plugins/buddypress-group-tabs-creator-pro/// For adding tabs account based
Currently, Our tab visibility offers only for “Anyone”, “Logged In”, ‘Members Only’ and “Group Admins Only”. But with some custom code we can make tab visible based account.Regards
Ravi- This reply was modified 4 years, 6 months ago by
Ravi.
- This reply was modified 4 years, 6 months ago by
Hello Carsten,
Thank you for posting. Both function does the same thing. ‘bp_is_profile_edit’ is the older version of ‘bp_is_user_profile_edit’ which was deprecated since BuddyPress 1.5. You can use ‘bp_is_user_profile_edit’ in place of ‘bp_is_profile_edit’.
Regards
Ravi- This reply has been marked as private.
- Ravi on January 18, 2021 at 11:51 am in reply to: [Resolved] Showing Specific Fields from BuddyPress Profile Data on Members Directory #35570
Hello James,
Please try the following code to render extra member data on member’s directory page.
/** * Add extra fields data on member directory page. */ function buddydev_render_extra_fields_data() { if ( ! bp_is_active( 'xprofile' ) ) { return; } $member_id = bp_get_member_user_id(); // Replace by your fields. $city_field_id = 2; $city = xprofile_get_field_data( $city_field_id, $member_id, 'comma' ); $city = $city ? __( 'City: ' ) . $city : ''; echo esc_html( $city ); } add_action( 'bp_directory_members_item', 'buddydev_render_extra_fields_data' );
PLease let me know if you need furthur assistance.
Regards
Ravi - Ravi on January 18, 2021 at 10:56 am in reply to: [Resolved] Group Tabs Creator Pro – Add by group type #35568
Hello John,
Look for “Configuring API Key” Section on above mentioned Page.
Regards
Ravi Hello Jimmy,
I have checked and test it on my development server and it is working fine for me. I have tried after adding to custom link to ‘bp-profile-extra-links’. Can you share me the demo admin credential of your site so that I can check.
Check this screen shot:
Regards
RaviHello Irene,
Please ignore my last message. I have updated the plugin on wordpress.org. Please update the plugin and check.
Regards
RaviHello Irene,
Thank you for sharing the details. Pleas try the updated plugin I have made some changes to the plugin. Please downloadthe latest plugin code here:
https://github.com/buddydev/bp-profile-completion/archive/master.zip
Please check.
Regards
Ravi- Ravi on January 14, 2021 at 8:49 am in reply to: [Resolved] BuddyPress Friends Suggestions Pro #35488
Hello Julia,
For shortcode, Please take a look at the following section “Showing the Friends/Follow suggestions using shortcode” on plugin page:
https://buddydev.com/plugins/buddypress-friends-suggestions-pro/Regarding Quest 1. Please make sure you have enabled rule status only then it will effect. Are you using widget for suggestions.
If still facing the issue please share your demo admin credentials so that I can check.
Regards
Ravi