Login     Sign up
How to hide new members from unlogged in people
Philip Rees (@piprees)
Join date: Dec 8th 2010
Community posts: 98
View Profile
Send Message

Where do i find this on the script to comment out or is it possible to do this in phpmyadmin

jcow network - [url]http://www.dealtowntoolbar.com/dealsocial[/url]

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

this is blue theme, so

themes/blue/home.tpl.php

this the code that shows the new members.

[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]

delete the code or put / before this code and / at the end of the code.

like this
[code]
/
echo '........
........
echo '</div></div>';
/
[/code]

172 months ago
Philip Rees (@piprees)
Join date: Dec 8th 2010
Community posts: 98
View Profile
Send Message

Perfect - thankyou very much once again :)

172 months ago