Quote:
Originally Posted by Gary W
Okay updated  It now shows the icons - BUT, it will only work when icons are in the images/icons/ folder and in the correct file format, for now. So it will work with default vB3 icons. If you add any new icons, just make sure they are the same format and same folder.
|
Why not use this in
includes/functions_newpost.php:
PHP Code:
if ($seliconid == $iconid)
{
if ($show['dropdownicons'])
{
$iconselect = " selected";
}
else
{
$iconchecked = HTML_CHECKED;
$selectedicon = array('src' => $iconpath, 'alt' => $alttext);
}
}
else
{
if ($show['dropdownicons'])
{
$iconselect = '';
}
else
{
$iconchecked = '';
}
}
This in the
posticons template:
Code:
function changeImage(selVal)
{
if (selVal != 0)
{
document.getElementById('posticonimage').src = selVal;
}
else
{
document.getElementById('posticonimage').src = 'clear.gif';
}
}
This in the
posticon_dropdown template:
Code:
<option value="$iconpath"$iconselect>$alttext</option>
That would use the correct SRC path for all icons and would also have the icon pre-selected if the post already had one (i.e. when editing).