The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
I don't know if there's an existing mod or not, but you could create a radio button custom profile field with options:
Code:
Forum Default Normal Yesterday / Today Detailed (I copy and pasted the description from the "Datestamp Display Option" vb option.) Then create a plugin using global_setup_complete hook location (other hooks would probably work as well), with this code: Code:
switch ($vbulletin->userinfo['fieldX']) { case 'Normal': $vbulletin->options['yestoday'] = 0; break; case 'Yesterday / Today': $vbulletin->options['yestoday'] = 1; break; case 'Detailed': $vbulletin->options['yestoday'] = 2; break; case 'Forum Default': default: // Don't change value break; } (of course you need to replace the X in the first line with the actual field number you created.) |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|