Ok, so I edited the global_start hook with the suggested edit and I got a DB error, replaced the code with this to link to the right table, it works, however, I cannot get the $bannerads to show in my templates.... Any ideas?
Code:
// Banner Ads System by tnguy3n
if($vbulletin->options['bannersys_mode'])
{
$getads = $vbulletin->db->query_read("vb3_forum"
bannersys_banners WHERE status = '1' ORDER BY RAND() LIMIT 1");
$ads = $vbulletin->db->fetch_array($getads);
// print banner ads
eval('$bannerads = "' . fetch_template('bannerads') . '";');
$vbulletin->db->free_result($getads);
unset($getads);
}
Also placed this in my forumhome template and it doesnt show...any ideas?
Code:
</head>
<body>
$header
$navbar
$bannerads
<!-- main -->
I am sure it is right under my nose, I am just dead tired....

:disappointed: :nervous: