Hi Brajesh, I hope you're well?
I need some help please with some code that I'd like to adapt for my site. The code below shows the last 5 avatars of members who have joined my site. Kind of like a gallery that gets displayed when a member logs in. This all works just fine.
<h3>Latest Members</h3>
<div style="width:635px; height:127px; border:solid;">
<?php if ( bp_has_members( 'type=newest&max=5' ) ) : ?>
<?php while ( bp_members() ) : bp_the_member(); ?>
<a href="<?php bp_member_permalink() ?>"><?php bp_member_avatar('type=full&width=125&height=125') ?></a>
<?php endwhile; ?>
<?php endif; ?>
</div>
<div class="clear"></div>
What I would like to achieve is for our Site Admins to be able to see the avatars of ALL members who have a nothing in their 'About Me' x-profile field and have been registered for 2 days. This is so the Site Admins can delete the profiles of members who have not provided enough information on their profiles
Can you help?
All the best
Rob