Quote:
Originally Posted by digitalSite
If anyone knows some of this stuff, please let me know if you can help. This is what the Thread Icon stuff looks like in the index page:
Code:
// Thread Icon
if ($vboptions['showthreadicon'])
{
if (!$thread['iconid'])
{
if ($vboptions['showdeficon'])
{
$thread['icon'] = '<img src="' . $vboptions['showdeficon'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
}
else
{
$thread['icon'] = '';
}
}
else
{
$thread['iconpath'] = $iconcache["$thread[iconid]"]['iconpath'];
$thread['icontitle'] = $iconcache["$thread[iconid]"]['icontitle'];
$thread['icon'] = '<img src="' . $thread['iconpath'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
}
}
$getbgrow = getrowcolor();
eval('$threadbits .= "' . fetch_template('index_threadbits') . '";');
}
$DB_site->free_result($threads);
unset($thread);
}
So, i guess i will play with this, lol.
|
just a note to you. if your using a standard vB3 style and not a vB2. all your counters have been updated and both your post icons and smilies have been given correct paths they should all be displaying fine
however if you cannot figure out what is wrong just copy the corosponding folders into the root dir and your problems will be solved quicker that way