Re: BP Album+ || New Features Requests and Discussion
@jaxster, I figured out how to make a page that shows every photo ever uploaded
Basically you use the BuddyPress Activity Loop (found here https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/)
And then where it says this `php if ( bp_has_activities( ) ) : bp_the_activity() `
Change to:
`php if ( bp_has_activities( ‘action=bp_album_picture’) ) : bp_the_activity() `
You can filter by any activity that way.
Add the activity Stream code to a custom page php file
Hope that helps