Quote:
Originally Posted by rrr
I only have one style that I use for my forums, but there is still the "default" style installed on my forums, that is not in use.
Is there anything I should be double checking?
|
I found the problem.
In the "Insructions - vb-3-6-6 - vb-3-6-7.txt" file, the template edit instructions are wrong.
I compared them to the edit instructions for vb-3-6-8 and it looks like this part:
Code:
find:
--------------------------------------------------------------------
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
--------------------------------------------------------------------
place BEFORE:
--------------------------------------------------------------------
$template_hook[postbit_userinfo_right]
--------------------------------------------------------------------
Should be this:
Code:
find:
--------------------------------------------------------------------
<if condition="$show['infraction']"><div>$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])</div></if>
--------------------------------------------------------------------
place BEFORE:
--------------------------------------------------------------------
$template_hook[postbit_userinfo_right_after_posts]
--------------------------------------------------------------------
The template hook name seems to have been renamed.
I changed the template hook name to match the 3.6.8 instructions and it worked fine.
Hope this helps