how can I have a "New Members" listed on the home page ... such as in this site?
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Jeff Mahoney@mahoney
Jeff Mahoney - 0 likes
- D8n@senator
D8n - 0 likes
- diane007@diane007
diane007 - 0 likes
- diane007@diane007
diane007 - 0 likes
- zyon@zyon
zyon - 0 likes
- Dirius@Dirius
Dirius - 0 likes
- Prieto@jprieto
Prieto - 0 likes
- kosmic@kosmic
kosmic - 0 likes
- kosmic@kosmic
kosmic - 0 likes
You must log in to post replies.I would like to see this also. Maybe have it show up in the Spotlight?
Showing 25 newest members:
Showing 25 Newest members that have uploaded icons:
Showing 25 Newest Groups:
More helpful info available here: http://community.elgg.org/pg/plugins/traveljunkie/read/2653/custom-index
@ Hancock - Thanks for the above info :)
Managed to get new members working no problem, trying to get the latest groups to show but no luck so far when using the above code.
Any ideas
Thanks :)
How to show list of groups ordered by activity, not by create date?
What Zyon is suggesting there would be very useful I think.
Hancock .... in which file (which is within which directory) should the lines be coded?? thanks
for use with custom index mod...wrap the one of your choice in php tags and place within a div ie:
<div id="new25_members"><?php $users = get_entities('user', '', 0, '', 25, 0, false, 0, null);
if($users){
foreach($users as $user){
echo "<div class=\"member_icon\">" . elgg_view("profile/icon",array('entity' => $user, 'size' => 'small')) . "</div>";
}
}?></div>
works with custom dashboard mod too :)