Hide BB Code Content FromUnregistered Users

  • Thread starter Thread starter AdminAdmin is verified member.
  • Start date Start date
Admin

AdminAdmin is verified member.

Well-Known Member
Staff member
Administrator
I couldn't find any addon for vb 4 to hide the bbcode content from unregistered users and showing a register message instead as here on vbulletin.org,so i have just fixed manualy on my forum.
add a new phrase first from Admincp » Languages & Phrases » Phrase Manager » Add New Phrase

  • Phrase Type : GLOBAL
  • Product : vBulletin
  • Varname : hide_code
  • Text : Please Login or <a href="register.php">Register</a> to see codes

Go to your Admincp » Styles & Templates » Style Manager » Your Style » BB Code Layout Templates


Open the bbcode_code template and find:
HTML:
<div class="bbcode_description">{vb:rawphrase code}:</div>
add this below:
HTML:
<vb:if condition="$show['guest']"><pre class="bbcode_code">{vb:rawphrase hide_code}</pre><vb:else />
In the same template add above the last </div> :
HTML:
</vb:if>


Open the bbcode_html template and find:
HTML:
<div class="bbcode_description">{vb:rawphrase html_code}:</div>
add this below:
HTML:
<vb:if condition="$show['guest']"><pre class="bbcode_code">{vb:rawphrase hide_code}</pre><vb:else />
In the same template add above the last </div> :
HTML:
</vb:if>


Now Open the bbcode_php template and find:
HTML:
<div class="bbcode_description">{vb:rawphrase php_code}:</div>
add this below:
HTML:
<vb:if condition="$show['guest']"><pre class="bbcode_code">{vb:rawphrase hide_code}</pre><vb:else />
In the same template add above the last </div> :
HTML:
</vb:if>


LIVE DEMO
 

Facebook Comments

Similar threads

Admin
Replies
0
Views
1K
AdminAdmin is verified member.
Admin
Admin
Replies
1
Views
963
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
1K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
5K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
1K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
5K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
1K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
3K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
3K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
3K
AdminAdmin is verified member.
Admin
Back
Top