THANKS!!! It's working now ! :]
EDIT: With that hook you suggested not all of the phrase varnames are shown, anyway
style_fetch hook will do the trick on th ewhole forum.
So, to have all info at one place ...
1] Edit
config.cfg and add following line
Code:
$config['Misc']['debug'] = true;
2] Create new plugin
Hook Location: style_fetch
Code:
Code:
global $vbulletin, $vbphrase;
if ($vbulletin->debug)
{
foreach ($vbphrase AS $key => $phrase)
{
$vbphrase["$key"] = "*$key*";
}
}
Refresh forum (it can take a while)
Credits to
Andreas and
kh99 :]