The Arcive of vBulletin Modifications Site. |
|
|
#1
|
||||
|
||||
|
FYI.. I tried to bump my original post in here "poll_thread_prefix?" but when I replied it only 'modified' my original post, it would not bump it. I tried several times.
I would like to add a condition to functions_forumdisplay that will show image B in a specified forum. It looks like here is where I would add the conditional: Code:
// show poll icon
if ($thread['pollid'] != 0)
{
$show['threadicon'] = true;
$thread['threadiconpath'] = "$stylevar[imgdir_misc]/poll_posticon.gif";
$thread['threadicontitle'] = $vbphrase['poll'];
}
// show specified icon
else if ($thread['threadiconpath'])
{
$show['threadicon'] = true;
}
// show default icon
else if (!empty($vboptions['showdeficon']))
{
$show['threadicon'] = true;
$thread['threadiconpath'] = $vboptions['showdeficon'];
$thread['threadicontitle'] = '';
}
// do not show icon
|
|
#2
|
|||
|
|||
|
If you post 2 consequtive replies in less then 24 hours, they are automatcially merged, to avoid bumpers
|
|
#3
|
||||
|
||||
|
Sneaky!
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|