ThorstenA
07-16-2008, 06:39 PM
I did this on hook forumdisplay_start to include tag_cloud phrase on FORUMDISPLAY.
$phrasegroups = array_merge($phrasegroups, array('search'));
Unfortunately it is not working.
--------------- Added 1216237421 at 1216237421 ---------------
I see you have to add phrases in hook init_startup. This works great:
if(THIS_SCRIPT == 'forumdisplay')
{
$phrasegroups[] = 'search';
}
$phrasegroups = array_merge($phrasegroups, array('search'));
Unfortunately it is not working.
--------------- Added 1216237421 at 1216237421 ---------------
I see you have to add phrases in hook init_startup. This works great:
if(THIS_SCRIPT == 'forumdisplay')
{
$phrasegroups[] = 'search';
}