
12-28-2016, 12:36 PM
|
|
|
Join Date: Feb 2006
Location: Italy
Posts: 358
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by MarkFL
Okay, let's try this...go to the plugin associated with this product titled "Determine If User Has Replied To Thread (If Applicable)" and locate the line near the top:
PHP Code:
if ($vbulletin->options['markfl_hbfg_active'] AND array_intersect(explode(',', $foruminfo['parentlist']), explode(',', $vbulletin->options['markfl_hbfg_forums'])))
Change this line to read:
PHP Code:
if ($vbulletin->options['markfl_hbfg_active'] AND array_intersect(explode(',', $foruminfo['parentlist']), explode(',', $vbulletin->options['markfl_hbfg_forums'])) AND !in_array($threadinfo['threadid'], array(XXXXX, YYYYY, ...)))
Change the part "XXXXX, YYYYY, ..." to a comma-delimited list of the threadids of any threads for which you wish to disable my product.
|
Okay, little problem. How do I find the ID of a thread?
|