Brilliant stuff! Thank you!
Any idea why the below dosent work even though my postcount is greater then 5?
Quote:
<if condition="$post['postcount'] > '5'">
<script language="JavaScript" type="text/javascript">
window.open("win1.html","Window1",
"menubar=no,width=430,height=360,toolbar=no");
</script></if>
|
however it shows up when I chage it to less then?
Quote:
<if condition="$post['postcount'] < '5'">
<script language="JavaScript" type="text/javascript">
window.open("win1.html","Window1",
"menubar=no,width=430,height=360,toolbar=no");
</script></if>
|