Viewing 3 replies - 1 through 3 (of 3 total)
  • I too want to know how to do this. Plus – only to show the images user’s have made public.

    ALSO to limit this by 5 or so for each user.

    Please let me also know if we can have a collective gallery

    I’m using the BuddyPress Album plugin (https://allnaturalartists.com) and needed a front-page slider which contained all user images.

    <div id="photos">
    <?php bp_album_query_pictures(); ?>
    <?php if ( bp_album_has_pictures() ) : ?>
    			<ul class="slides">
            <?php while ( bp_album_has_pictures() ) : bp_album_the_picture(); ?>
    					<li>
                        <a href="<?php bp_album_picture_url(); ?>" title="<?php bp_album_picture_title(); ?>">
    						<img src='<?php bp_album_picture_original_url() ?>' alt="<?php bp_album_picture_desc(); ?>" />
    					</a>
    					<!--<div class="slideDescription">
    						<?php //echo bp_album_picture_desc(); ?>
    					</div>-->
    					</li>
            <?php endwhile; ?>
    			</ul>
    				<div class="clearfix"></div>
    				<a id="prev" class="prev" href="#"><</a>
    				<a id="next" class="next" href="#">></a>
    <?php endif; ?>
    </div>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: BuddyPress Album] collective gallery’ is closed to new replies.