BuddyDev

Search

Replies

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

    Hello,

    Thank you for posting. “Blog Author profile For BuddyPress” is a simple plugin with simply filters author links to point to BuddyPress profile. That’s why we haven’t added the docs. we will update the plugin page to be a bit more clear.

    Thank you
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Manage Visibility by Admin #38685

    Hello Dave,

    For taking off Member’s profile from members directory. Just go to member’s settings on the frontend and locate sub-menu named “Profile Privacy” under “Settings” nav and set this setting “List in members directory?” to no.

    Look at the following screenshot:

    https://tinyurl.com/ygdqodlr

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] New Profile Tab Isn’t Showing #38682

    Hello Tina,

    For installation, you have to download the plugin from your buddydev account. Just go to your profile on buddydev and under Membership > Plugins and locate “BuddyPress User Profile Tabs Creator Pro”

    Then follow the steps as per the following resource:

    https://buddydev.com/docs/buddypress-user-profile-tabs-creator-pro/buddypress-user-profile-tabs-creator-pro-installation-upgrade/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: The user “profile tab” is gone! #38679

    Hello Doss,

    Sorry for the inconvenience. I have checked the latest version of Community Builder Pro and everything is working fine. Please do let me know which profile bar you are referring to. If Possible, Share the screenshots of the issue so that I can help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddypress group title #38659

    Hello Pasifik,

    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] Buddypress group title #38657

    Hello,

    Please check the following code and let me know if it works or not:

    
    add_filter( 'bp_get_title_parts', function ( $bp_title_parts ) {
    	$bp = buddypress();
    
    	if ( bp_is_group() ) {
    
    		$component_id = bp_current_component();
    
    		if ( ! empty( $bp->{$component_id}->nav ) ) {
    			$secondary_nav_item = $bp->{$component_id}->nav->get_secondary(
    				array(
    					'parent_slug' => bp_current_item(),
    					'slug'        => bp_current_action(),
    				),
    				false
    			);
    
    			if ( $secondary_nav_item ) {
    				$secondary_nav_item = reset( $secondary_nav_item );
    			}
    		}
    
    		$single_item_subnav = '';
    
    		if ( ! empty( $secondary_nav_item->name ) ) {
    			$single_item_subnav = $secondary_nav_item->name;
    		}
    
    		$bp_title_parts = array( $bp->bp_options_title, $single_item_subnav );
    
    		$bp_title_parts = array_map( '_bp_strip_spans_from_title', $bp_title_parts );
    	}
    
    	return $bp_title_parts;
    } );
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Create a profile type buddy boss #38656

    Hello,

    Yes, That is a problem with this approach. Please contact BuddyBoss, If they can help you with this issue.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Activity Auto Moderation #38655

    Hello,

    Please do let me know if the setting name “Delegate moderation capability to user roles” is enabled or not. If yes, What are the “Moderation Manager Roles”.

    You can find these settings under the Settings > Miscellaneous tab.

    Regards
    Ravi

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

    Hello Daniel,

    Thank for the details. Yes, It is a problem with the code but I couldn’t help you much with it. Currently, We are busy with some other important projects. But we do have a plan to have this feature in future plugins.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddypress group title #38643

    Hello Pasifik,

    Thank you for the acknowledgment. I will check and let you know.

    Regards
    Ravi