The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Article Signatures per Usergroup
How can I append a statement to the end of every article based on users? In essence, Admins may have one specific statement and a general user another statement. Basically, I want to create a signature similar to what I have done for posts on my forum. Here is an example of the Plug-in I created for my forum:
Hook Location: postbit_display_complete if (is_member_of($post, 6)) { $post['signature'] = '<i>Admin Signature</i>'; } if (is_member_of($post, 2)) { $post['signature'] = '<i>Default Signature For Registered Users</i>'; } Thanks in advance. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|