Quote:
Originally Posted by Warden-B-
Doesn't show and I did everything right. Will it conflict with other mods on my site?
|
No mate, I dobt there's a conflict with some other mod.
I'll have to repeat myself thouh
You probably missed step #3 from the installation manual:
- Open
BOTH templates
posbit and
postbit_legacy;
- FIND:
Code:
<if condition="$post['userid'] AND $show['member']">
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=addlist&userlist=buddy&u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
</if>
- Bellow that code, add the following:
Code:
<if condition="$show['btu_canban']">
<if condition="!isset($btu[$post[threadid]][$post[userid]])">
<tr><td class="vbmenu_option"><a href="postings.php?$session[sessionurl]do=btu_ban&t=$post[threadid]&u=$post[userid]">$vbphrase[btu_ban]</a></td></tr>
<else />
<tr><td class="vbmenu_option"><a href="postings.php?$session[sessionurl]do=btu_ban&t=$post[threadid]&u=$post[userid]">$vbphrase[btu_unban]</a></td></tr>
</if>
</if>
Make sure you edit both templates. It will surely work.