BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25128

    Hi Jan,
    sorry, That was late here too.

    Can you please visit a group( front end of site) and see if you see Gallery tab on that group? If not, go to that group->Admin->Settings page and enable the Gallery. Try creating a gallery/uploading there and see if it is behaving correctly or not?

    I believe, you are trying to upload from sitewide activity page and selecting a group. In that case, media is being added to user wall gallery instead? Is that correct?

  • Keymaster
    (BuddyDev Team)
    Posts: 25128
    Brajesh Singh on in reply to: Browse media? #601

    Hi Achim,
    Thank you for using MediaPress.

    The prev/next is available in activity if you have enabled the Lightbox. Also, if you are on single Media page, you can see two links at the bottom, those are for previous/next media. You may need some css to replace the link text with arrow image instead.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25128

    Hi Jan,
    This plugin has no external dependencies and you are right that it replaces them.

    About group upload, please make sure that groups is enabled from MediaPress->settings page. Also, please do check that the group has gallery enabled. It can be enabled/disabled for individual groups from group settings page.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25128

    Hi Jan,
    Thank you for trying MediaPress and my apologies for the inconvenience.
    It seems you have groups disabled at the moment. The current code is mistakenly checking for the function(It should not have).

    For the time being, can you please edit that file and replace the line with this

    this line( no. 21 )

    
    
        if( function_exists( 'bp_is_group' ) && bp_is_group() && ( ! mpp_is_active_component( 'groups' ) || ! mpp_group_is_gallery_enabled() ) )
            return;
    
    

    to

    
    
     //if we are on group page and either the group component is not enabled or gallery is not enabled for current group, do not show the icons
        if( function_exists( 'bp_is_group' ) && bp_is_group() && ( ! mpp_is_active_component( 'groups' ) || ! ( function_exists( 'mpp_group_is_gallery_enabled') && mpp_group_is_gallery_enabled() ) ) )
            return;
    
    

    I should have pushed the changes as it is minor but my working copy is around 90 commits above the current MediaPress trunk on github, so I need you to do it. Other solution is enable groups for now.

    I will be pushing a change in 1-2 days that fixes it(Already on my working copy) and adds a lot of other new features.

    Thank you
    Brajesh

    • This reply was modified 9 years, 11 months ago by Brajesh Singh.
    • This reply was modified 9 years, 11 months ago by Brajesh Singh. Reason: Updating code
    • This reply was modified 9 years, 11 months ago by Brajesh Singh. Reason: My bad kept copying the same code
  • Keymaster
    (BuddyDev Team)
    Posts: 25128
    Brajesh Singh on in reply to: BP Magic Sidebar login #585

    Hi Jay,
    did that work for you or not? will appreciate your feedback.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25128
    Brajesh Singh on in reply to: [Resolved] Anonymous Plugin with rtMedia (conflict) #583

    Closing this as It is related to 3rd party plugin and hoping that they should have dealt with it by now.

  • Keymaster
    (BuddyDev Team)
    Posts: 25128
    Brajesh Singh on in reply to: Auto Loader #582

    Hi,
    have you had any chance to upgrade? I will appreciate your feedback.
    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25128

    Thank you Leigh. Closing this topic now. Please feel free to open new topic if needed.
    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25128

    Hi Steve,
    Have you had any chance to look at the update?
    I will appreciate your feedback.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25128
    Brajesh Singh on in reply to: [Resolved] Loop for member types #577

    Hi eGuard,
    Here is an example function

    
    
    function buddydev_custom_get_users_by_member_types( $ids = array() ) {
    		
    	$ids = wp_parse_id_list( $ids );
    	
    	if( ! $ids ) {
    		return ;
    	}
    	
    	$args = array(
    		'user_ids'			=> $ids,
    		'populate_extras'	=> true, //it will fetch names etc and cache member types
    	);
    	
    	$user_query = new BP_User_Query( $args );
    	
    	$users = $user_query->results;
    	$user_by_types = array();//multidimensional assay
    	//an Arr of WP_User objects with some added details like last_activity, latest_update etc
    	foreach ( $users as $user ) {
    		
    		$member_type = bp_get_member_type( $user->ID );
    		if( ! $member_type ) {
    			continue;
    		}
    		
    		$user_by_types[$member_type][] = $user->ID;
    		
    	}
    	
    	print_r( $user_by_types );
    	
    }
    
    

    And you ca call it like this

    
    <?php buddydev_custom_get_users_by_member_types( '1,2,3,4,5,6,7,8');?>
    

    Hope that helps you.