Hello all this will work on 3.7 however some edits have to be done to the code:
The Original
Quote:
<!--System Specs-->
<br />
<if condition="$post[fieldX] == YES">
<div id="sysinfo_$post[postid]" align="left" class="info" nowrap>
<a href="#sysinfo"><b>My System</b> </a><script type="text/javascript"> vbmenu_register("sysinfo_$post[postid]"); </script></div>
</if>
<br />
<!--/System Specs-->
|
Change With
Quote:
<!--System Specs-->
<br/>
<if condition="$post[fieldX]=YES">
<div id="sysinfo_$post[postid]" align="left" class="info" nowrap>
<a href="#sysinfo"><b>My System</b> </a><script type="text/javascript"> vbmenu_register("sysinfo_$post[postid]"); </script></div>
</if>
<br/>
<!--/System Specs-->
|
You must remove one "=" and a "Space" to get it to work