Hide Signature and Avatar in specific forum
Hello everybody,
This is my first modification I post in vBulletin.org, and I hope it will be a good start for me and I keep posting new modifications for you. Today's post is about hiding signature or/and avatars in threads in specific forum, its very easy and simple.
Find: Code:
<if condition="$post['signature']"> Replace it with: Code:
<if condition="$post['signature'] AND !in_array($thread['forumid'],array(2,47))"> You're done !
Open your postbit, or postbit_legacy template. Find: Code:
<if condition="$show['avatar']"> Replace it with: Code:
<if condition="$show['avatar'] AND !in_array($thread['forumid'],array(2,47))"> IMPORTANT NOTICE: Replace 2 & 47 with the forum id you want to hide avatars from it, if you want to add more forum numbers add comma between them. I hope this modification would be useful for everyone. Regards, Ibrahim Mohammed Download No files for download. |
Similar Mods
how to hide a forum from Specific gender? | vBulletin 3.5 Template Modifications |