DZOIC – Showing only members with photos
The Default dzoic plain theme shows 5 recent members. However, these 5 members may or may not have photos. We want to show up only those members with photos. Here is the simple modificatoin.
Open
modules/recent.php
Original
AND m.mem_id = p.mem_id
AND m.verified=’1′
ORDER BY p.joined DESC
LIMIT 0,5″;
Change to
AND m.mem_id = p.mem_id
AND m.verified=’1′
AND p.photo !=’awaiting.gif’
ORDER BY p.joined DESC
LIMIT 0,5″;
Now you will see only those recent members with photos. Notice the addition of line
AND p.photo !=’awaiting.gif’