The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How to block images and signatures to Unregistered Guest?
Hello,
I'm trying to block images, signatures and profile details on all posts for unregistered guests. So I want them to only see the usernames and posts. I have been searching this for a week, couldn't get anything for 3.7.0. Is there any way to do that? Any Ideas? Thanks. |
#2
|
||||
|
||||
You should look into postbit (or postbit legacy) templates, find the part where the avatar and signature are inserted and encapsule them in a condition "if show['member']".
for example, this would be on postbit_legacy Code:
<if condition="$show['member']"> <if condition="$show['avatar']"> <div class="smallfont"> <br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a> </div> </if> </if> |
#3
|
|||
|
|||
For Example I have the code below for signatures on postbit and can't figure out which code I can add here to hide signatures from guests/unregistered users.
Thanks for your reply by the way. Code:
</if> $template_hook[postbit_signature_start] <if condition="$post['signature']"> <!-- sig --> <div> <br /> <div class="hr" style="width: 100px;"> <hr /> </div><div class="spacer"></div> $post[signature] </div> <!-- / sig --> </if> $template_hook[postbit_signature_end] <if condition="$show['postedited']"> <!-- edit note --> <div class="smallfont"> <div class="spacer"></div> <div class="hr"> <hr /> </div><div class="spacer"></div> <em> |
#4
|
||||
|
||||
try this:
Code:
</if> $template_hook[postbit_signature_start] <if condition="$post['signature']"> <!-- sig --> <div> <br /> <div class="hr" style="width: 100px;"> <hr /> </div><div class="spacer"></div> <if condition="$show['member']"> $post[signature] </if> </div> <!-- / sig --> </if> $template_hook[postbit_signature_end] <if condition="$show['postedited']"> <!-- edit note --> <div class="smallfont"> <div class="spacer"></div> <div class="hr"> <hr /> </div><div class="spacer"></div> <em> |
#5
|
|||
|
|||
Thanks a lot Amenadie, finally I made it
Thank you for your helps. |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|