ok cool, its the template thing that was wrong.. my mistake. BUT i need guidence on one bit...
check this out..
The next change adds a warn sign in all warned posts. There are separate instructions for the postbit template, shown here, and for the postbit_legacy shown in a note at the end of this section, and before the changes for the MEMBERINFO TEMPLATE.
In the same template, (postbit only) find:
<td valign="top" nowrap="nowrap">
<div class="smallfont">
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
Right above that, add:
<!-- Show warned sign -->
<if condition="THIS_SCRIPT=='showthread'">
<if condition="$showwarnsignmgm==1">
<!-- Mgm can click on the stop sign to see the warnings -->
<td><A HREF="Warn.php?do=ViewPostWarnings&post=$post[postid]" onclick="window.open('Warn.php?do=ViewPostWarnings &post=$post[postid]','','width=1000, height=500, resizable=yes, scrollbars=yes'); return false;" target="_blank"><img src="images/misc/warn.gif" border=0></a></td>
</if>
<if condition="$showwarnsign==1">
<!-- Simple Users can only see the warn sign but not the warnings -->
<td><img src="images/misc/warn.gif" border=0></td>
</if>
</if>
<!-- End of show warned sign -->
In the same template find:
Now what my problem here is.. is that i know you only make that change to the postbit template and not the other one.. But you see where it then goes back to normal, just when i ended the code here - In the same template find:, does that mean anything from this point now on i apply to both of the template files again? or carry on just applying it to the postbit template file?
|