Quote:
Originally Posted by hornstar1337
I just installed this. I tagged someone and it showed up in the shoutbox. but when I click on the User Tags tab, it gave me:
Error: Service Unavailable
Not sure if that is a shoutbox problem or a problem with this, but thought I would let you know here ^^
|
Is there anything in your server's error_log that could help track this down?
Quote:
Originally Posted by hornstar1337
Edit: I noticed that guests can tag people. How do I stop guests from being able to tag people?
|
That's an oversight, sorry
Perform the following template edit:
In template
dbtech_usertag_inlinetaglist find:
Code:
<if condition="$taglist">
<tr>
<td class="alt1">{$taglist}</td>
</tr>
</if>
Add below:
Code:
<if condition="$bbuserinfo['userid']">
Find:
Add above:
Quote:
Originally Posted by hornstar1337
Edit 2: How do i stop the Thread Tags from showing up at all to guests.
|
To do that instead, wrap the entire template in that if condition I just showed you