Hello,
This drove me nuts for months: Zoints SEO "kills" the tag cloud system search (tags.php) from vBulletin 3.7.x.
After spending hours researching this problem, I FINALLY FOUND THE SOLUTION. Here we go.
Two items need to be edited.
1. Open tags.php and add what is marked in red:
$show['disabled'] = ($movethread["$thread[threadid]"] OR $deletethread["$thread[threadid]"] OR $approvethread["$thread[threadid]"] OR $openthread["$thread[threadid]"]) ? false : true;
($hook = vBulletinHook::fetch_hook('threadbit_display')) ? eval($hook) : false;
eval('$threadbits .= "' . fetch_template('threadbit') . '";');
2. Open the plugin called "Zoints SEO" at the hook "threadbit_display" and add what is marked in red:
$thread['zointsurl'] = zseo_url_thread($thread, 1, $thread['highlight']);
$thread[zointsforumurl] = zseo_url_forum($thread);
$show['zointsurl'] = true;
After these two modifications the tag cloud system will work 100% with Zoints SEO.
Cheers,
Gabriel Torres.
|