
03-24-2017, 05:58 PM
|
|
|
Join Date: Dec 2015
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by MarkFL
Okay, here's what I would do...
Step 1: Create custom phrase as follows:

Click "Save" to save the new phrase. Step 2: Create a new plugin as follows:
Product: vBulletin
Hook Location: forumbit_display
Title: Use Custom VIP Phrase As Applicable
Execution Order: 5
Plugin PHP Code:
PHP Code:
if ($forum['forumid'] == XX AND $forum['lastpostinfo'] == $vbphrase['private'])
{
$forum['lastpostinfo'] = $vbphrase['vip_private'];
}
Replace "XX" with the forumid of the private VIP forum.
Plugin is Active: Yes
Click "Save" to save the plugin. This works on my local dev site...if you have any issues, let me know. 
|
Excellent...!!! Great Job Sir. :up::up::up:
Thank You
|