Quote:
Originally Posted by BirdOPrey5
just this:
Code:
global $vbulletin
if (is_member_of($vbulletin->userinfo, 5, 6, 7))
{
$is_livetopic = true;
$livetopichook = 'template_edits';
include 'includes/livetopic_hooks.php';
}
work only for groups 5, 6, and 7
OR
Code:
global $vbulletin
if (!is_member_of($vbulletin->userinfo, 1, 2))
{
$is_livetopic = true;
$livetopichook = 'template_edits';
include 'includes/livetopic_hooks.php';
}
work for all groups EXCEPT 1 and 2.
|
I'm sorry but this code is just not working for me, I'm wondering if maybe theres a conflict somewhere else. I've tried both versions of the code and Live Topic stops working no matter what I do. I've tried adding it to both ajax_start and global_start. I've tried each plugin individually with the code as well as both of them having the code.