]Just wanted to say that i have tried the new 2.01 and i have found the same trouble as someone earlier. I am using 3.5.3 vb. The only thing that shows up is:
I searched in the templates and that comes up in:
BB Code Layout Templates
bbcode_hide
bbcode_hide_noaccess
I have re-checked and re-done the install a few times. I was wondering if you have any ideas on this.
Appreciate any help you can give.
ADDED: Problem Fixed:
(Thankyou to LionDen)
The code from here originally:
BB Code Layout Templates
bbcode_hide
seemed to be re-written by an old HIDE hack and with the new code in it, will not work with this one (only show 'Hide:'), i replaced the code in 'bbcode_hide' with:
Code:
<div style="margin:20px; margin-top:5px;">
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<div>$caption:</div>
<div style="font-style:italic">
<if condition="$hidetag['canview']">
$text
<else />
$vbphrase[hidetag_accessdenied]
</if>
</div>
</td>
</tr>
</table>
</div>
Now it works fine. I placed this here as some had problems earlier and for anyone that has the same problem in the future. The 'bbcode_hide_noaccess' has nothing to do with this HIDE Hack, do as you please with it. Hope this helps you guys.
Thankyou to LionDen for the fix.