BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Account-based access to tabs #35581

    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.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] BP template tag breaks my site #35579

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: restrict forum by registration fields #35571
    This reply has been marked as private.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: 404 PAGE #35528

    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:

    https://tinyurl.com/y46occes

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: 404 PAGE #35525

    Hello Jimmy,

    Sorry for the inconvenience. Please share the code you are using for adding new tab so that I can help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BudyPress Profile Completion issue #35516

    Hello Irene,

    Please ignore my last message. I have updated the plugin on wordpress.org. Please update the plugin and check.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BudyPress Profile Completion issue #35512

    Hello 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on 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