thanks harald, I found the cmps module info here:
https://vborg.vbsupport.ru/showpost....&postcount=372
And can you tell me what's wrong with this code? I edited the gallery_latestpictures thread to try and make it so that only registered members could see the pics posted but it made it so no one can see the pics posted, everyone sees the register jpg. Its from a post I found earlier in this thread.
Code:
<td align="center">
<table class="tborder" align="center">
<tr>
<if condition="$show['member']">
<td class="thead" height="100" width="120" align="center">
<a HREF="attachment.php?attachmentid=$gallery[attachmentid]">
<img src="attachment.php?attachmentid=$gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="120" height="40">
<br />
<a href="showthread.php?t=$gallery[threadid]">
$gallery[title]
</a>
</td>
<else />
<td>
<img src="images/misc/register.jpg">
</td>
</if>
</tr>
</table>
</td>