Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] HI URGENT PROBLEM #4532

    Hi Nacho,
    My sincere apologies for the delayed reply. I missed it due to the weekend.

    Please allow me to look into it today and I will help you. Are you using any other plugin related to member type?

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Public media upload #4531

    Hi Mike,
    Thank you for posting. It seems you are using the upload shortcode.
    I am sorry but I could not understand this line

    is there a way to limit the galleries to only those showing

    Can you please tell me what do you mean by them?

    Yes, you can override the order by overriding a template file. Let me help you with the first question and then I will help with it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Lavish,
    Thank you for posting.

    1. It is how BuddyPress Works. It needs all the fields on registration to work. I can override the behavior but that will make the things complex.

    2. I am thinking of that too. Seems easy(except that hiding the first group will be some trouble)

    3. Please give me till 6th July to test/update this plugin.

    3. No, Those are very very light weight plugins. Bloated/badly written plugins slows down the site. At BuddyDev, I can guarantee that we take it very seriously. There are some(1-2) plugins that consume memory/db calls, we have it mentioned on plugin page.

    Hope the post clarifies.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: BP Deactivate Account and friends request #4529

    Hi Gabry,
    Can you please explain the issue in a little more details to me. What is happening and what is your expected behavior? That will help me to assist you better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] BuddyPress Group Widget #4523

    Hi Dandy,
    I have updated our Extended User Groups plugin to list hidden groups now.

    Please upgrade to 1.0.2 and let me know if that works or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] BuddyPress Group Widget #4519

    Hi Dandy,
    Are you using the default BuddyPress group widget? It is doing it correctly as it does not know about the logged in user’s membership of groups.
    Or, are you using something else?

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Lee,
    You mean something like this

    
    add_action( 'bp_actions', 'buddydev_custom_redirect', 0 );
    
    

    It is a function call and based on the definition of the function being called, a developer can pass the parameters.

    In case of add_action/add_filter functions, the definition allows two optional numeric parameters as the last 2 . Example

    
    add_action( 'some_action_name', 'some_callback', 'optional_numeric_priority', 'optional_expected_parameters by the callaback');
    
    

    The fist numeric parameter tells us the priority of the attached callback function and the second numeric tell us about the expected number of parameters

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    HI Lavish,
    Please put this code in your bp-custom.php and visit The Users profile

    
    function buddydev_modify_profile_page_title( $title_parts ) {
    		
    	if ( bp_is_user_profile() && bp_current_action() == 'public' ) {
    	
    		$member_type = bp_get_member_type( bp_displayed_user_id() );
    
    		if ( $member_type ) {
    			
    			$memeber_type_object = bp_get_member_type_object( $member_type );
    				
    			array_unshift( $title_parts, $memeber_type_object->labels['singular_name'] );
    			
    		}
    	}
    
    	return $title_parts;
    	
    }
    
    add_filter( 'bp_get_title_parts', 'buddydev_modify_profile_page_title' );
    
    

    Please let me know if it works for you or not?