Login     Sign up
Home Page
jacky loon (@jack41)
Join date: Nov 9th 2010
Community posts: 87
View Profile
Send Message

In blue theme, how to reduce the number of new members above the network statistics on home page which is 18 by default.
Thanks.

173 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

in home.tpl.php

[code]
echo '
<div class="block">
<div class="block_title">'.t('New members').'</div>
<div class="block_content">';

$res = sql_query("SELECT * from ".tb()."accounts order by id desc limit 18");
while($row = sql_fetch_array($res)) {
echo avatar($row,25);
}
echo '</div></div>';
[/code]

---> limit 18

173 months ago
jacky loon (@jack41)
Join date: Nov 9th 2010
Community posts: 87
View Profile
Send Message

oh yes falcone. i have limited it to 9 but how to increase their avatar(thumbnail) size on the same place under new members.
thanks in advance

173 months ago
Vincent T (@vincent)
Join date: Jun 18th 2010
Community posts: 298
View Profile
Send Message

Please describe your question on the title. And start new thread for new question.
Thread locked.

173 months ago