BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Set Featured Image link/button not appearing #40661

    Hello Scooter,

    Thank you for the acknowledgment. I am glad that I could help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hide Members List in Groups #40660

    Hello Simon,

    Thank you for the acknowledgment. I am glad that I could help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hide Members List in Groups #40653

    Hello Simon,

    Try the following code:

    
    add_action( 'groups_setup_nav', function () {
    
    	if ( is_super_admin() || groups_is_user_admin( get_current_user_id(), bp_get_current_group_id() ) ) {
    		return;
    	}
    
    	$excluded_names = array( 'Test Group', 'Test Group 1' );
    
    	if ( in_array( bp_get_current_group_name(), $excluded_names ) ) {
    		// If will hide members tab for all users. You can place conditions whom to show or hide this group.
    		bp_core_remove_subnav_item( bp_get_current_group_slug(), 'members', 'groups' );
    	}
    } );
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hide a specific group on my profile tab #40652

    Hello Simon,

    Thank you for the acknowledgment. BuddyPress handles the group’s counter in a different way which is why this issue is occurring.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Set Featured Image link/button not appearing #40651

    Hello Scooter,

    Please enable the following settings from the admin panel under the Settings > BuddyBlog.

    1. Allow Upload?
    2. Enable Post Thumbnail?

    Please let me know if you are able to upload the featured image or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Member type pro problem #40650

    Hello Tosin,

    I have tested this on my local server but was unable to reflect the issue. Please let me know how to recreate this issue. Also, Let me know if you had an update plugins, themes, or put any custom code recently.

    As per my understanding, There is a missing label of member type which is why showing an empty option.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Hide a specific group on my profile tab #40646

    Hello Simon

    Thank you for sharing the screenshot. Try the following code:

    
    add_filter( 'bp_after_has_groups_parse_args', function ( $r ) {
    
    	// Not show secret groups.
    	if ( bp_is_user() && bp_is_current_action( 'my-groups' ) ) {
    		$r['group_type__not_in'] = array( 'secret' );
    	}
    
    	return $r;
    } );
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Set Featured Image link/button not appearing #40645

    Hello Scooter,

    Thank you for letting me know. With BuddyBlog’s standard version you need another plugin named “BP Simple Frontend Post”. Please let me know are you using this plugin or not.

    Plugin Url: https://buddydev.com/plugins/bp-simple-front-end-post/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Patrick,

    Sorry for the inconvenience. Please point me you the page you have used multiple shortcodes so that I can help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Set Featured Image link/button not appearing #40631

    Hello Scooter,

    Thank you for using the plugin. Have you added the featured image field in the form fields?.

    Look here for more info:

    https://buddydev.com/docs/buddyblog-pro/configuring-post-fields-in-buddyblog-pro-post-form/

    Regards
    Ravi