Quote:
Originally Posted by Gn_Snake
|
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.