
post.template.php de
bunu bulup
<select name="icon" id="icon" onchange="showimage()">'; // Loop through each message icon allowed, adding it to the drop down list. foreach ($context['icons'] as $icon) echo ' <option value="', $icon['value'], '"', $icon['value'] == $context['icon'] ? ' selected="selected"' : '', '>', $icon['name'], '</option>'; echo ' </select> <img src="', $context['icon_url'], '" name="icons" hspace="15" alt="" /> </td> </tr>';
bununla değiştir
'; // Loop through each message icon allowed, adding it to the drop down list. by rallyproco foreach ($context['icons'] as $icon) echo ' <INPUT type="radio" name="icon" value="', $icon['value'], '"', $icon['value'] == $context['icon'] ? ' checked="checked"' : '', '> <img src="', $icon['url'], '" name="icons" alt="" />'; echo ' </td> </tr>';k seçeneklerin üstüne alma
işte çözüm (önceki verdiğim yöntemi yaptıktan sonra)


post.template.php dosyasını açın
bu kodu alıp (kesip)
<tr> <td align="right"> <b>', $txt[71], ':</b> </td> <td> '; // Loop through each message icon allowed, adding it to the drop down list. by rallyproco foreach ($context['icons'] as $icon) echo ' <INPUT type="radio" name="icon" value="', $icon['value'], '"', $icon['value'] == $context['icon'] ? ' checked="checked"' : '', '> <img src="', $icon['url'], '" name="icons" alt="" />'; echo ' </td> </tr>
bu kodun altına yapıştır
// If the admin has enabled the hiding of the additional options - show a link and image for it. if (!empty($settings['additional_options_collapsable'])) echo '