buddydev / mediapress

The Most advanced Media Gallery Plugin for BuddyPress
https://buddydev.com/mediapress/
32 stars 17 forks source link

How to show multiple photos in a grid in the activity stream #36

Closed rhisss closed 8 years ago

rhisss commented 8 years ago

How to show multiple photos in a grid (suppose a grid of 5 or 6 or similar) in the activity stream when multiple photos are uploaded simultaneously. An user uploading say 12 or 15 photos will easily "spam" the stream at the current settings.

sbrajesh commented 8 years ago

Thank you for noting it. For now, Please copy "mediapress/templates/mediapress/default/buddypress/activity/views/grid-photo.php" to "yourtheme/mediapress/default/buddypress/activity/views/grid-photo.php" and change this line

$mppq = new MPP_Cached_Media_Query( array( 'in' => mpp_activity_get_attached_media_ids( $activity_id ) ) ); to $mppq = new MPP_Cached_Media_Query( array( 'in' => array_slice( mpp_activity_get_attached_media_ids( $activity_id ), 0, 5) ) );

That will list only upto 5 photos for now. I am also adding an option to do the same from the BuddyPress settings tab from MediaPress settings. Thank you Brajesh

sbrajesh commented 8 years ago

HI, I have added the settings and a default limit in 4d0273a5b1327b4ad012035531f2b7be7f8fed78

Marking it as resolved.