BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Tweaking bp_get_group_join_button #37533

    Hello Nik,

    Thank you for posting. Please do let me know which theme and template pack you are using and further flow of the button i.e. Are you looking to redirect to a custom page or anything else.
    So that I can better assists you with this.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Group tabs not showing up on buddy boss app #37532

    Hello Deanna,

    Thank you for asking. Please contact BuddyBoss for the same. They are in a better position to guide you with this. Just ask when they are supporting third party plugin created tabs in groups?

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Code snippets for hiding the report user buttons? #37516

    Hello Carsten,

    Thank you for using the plugin. You do not need any custom code for hiding buttons. ‘BuddyPress Block Users’ already offer a setting named ‘Button locations’ under Settings > BuddyPress Block Users > General settings.

    Regards
    Ravi

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

    Hello Dianne

    Thank you for the replies

    I am sorry, I just realized that we do not allow adding sub-tabs to an existing tab of a group.

    The reason is BuddyPress/BuddyBoss themes do not have a way to add/render custom sub-tabs of group tab.

    Regards
    Ravi

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

    Hello Carsten,

    Thank you for the details. I would like to make you more clear on adding member types with default interface and With Member Type Pro interface.

    1. When you create a member type using the default interface it will be created like terms in custom taxonomy.
    2. While you create a member type using the Member Type Pro plugin it will be created like posts with custom post types that is why you are getting different IDs and default member types not showing in Member Type Pro UI.

    Regards
    Ravi

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

    Hello,

    Sorry for the inconvenience. Please do let me know we need tab slug when modifying existing tabs.
    You can check the following resource to know more on how to add slug.

    For getting tab slug:

    https://buddydev.com/docs/buddypress-group-tabs-creator-pro/modifying-label-repositioning-existing-group-tab/

    If the slug field not visible check for:
    https://buddydev.com/docs/buddypress-group-tabs-creator-pro/enable-slug-option-for-the-group-tab-editing/

    If still faces the issue do let me.

    Regards
    Ravi

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

    Hello Thomas,

    Thank you for the acknowledgment and the conflict issue with BuddyBoss.

    PFI: Administrator role setting will be applicable in multisite site cases where administrator setting will be applied on sub-site administrators.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Code adjustment #37479

    Hello Tosin,

    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] Code adjustment #37472

    Hello Tosin,

    Thank you for the acknowledgment. Please modify the following section.

    
    if ( empty( $last_activity ) ) {
    // Redirect you custom page.
    		bp_core_redirect( bp_loggedin_user_domain() );
    	}
    
    

    with the following.

    
    
    if ( empty( $last_activity ) ) {
    		update_user_meta( $user->ID, '_buddydev_first_login', 1 );
    		// Redirect you custom page.
    		bp_core_redirect( bp_loggedin_user_domain() );
    	} elseif ( get_user_meta( $user->ID, '_buddydev_first_login', true ) ) {
    		delete_user_meta( $user->ID, '_buddydev_first_login' );
    		// Try second login here.
    		bp_core_redirect( bp_loggedin_user_domain() );
    	}
    
    

    Regards
    Ravi

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

    Hello Thomas,

    Sorry for the inconvenience. Is there any chance you are testing with an administrator account? Please try to test with a user with a different role other than administrator.

    I have tested with the subscriber role and it is working fine.

    Regards
    Ravi