So I've skipped the editings in the forumdisplay template, since I don't want to add the thread image as an extra table, but instead of the threadicons.
But it seems I have made an error here with the conditionals:
PHP Code:
<if condition="$show['threadicons']">
<td class="alt2">
<if condition="$thread[forumtitle] == cds"><img src="http://www.mysite.com/images/forumdisplay/$thread[threadid].jpg" width="90" height="90"></if>
<if condition="$show['threadicon']"><img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" />
<else /> </if></td>
</if>
The normal threadicons show up in all forums but the 'cds' forum, while in the cds forum a nice threadimage is displayed for all threads in this forum. But...... the threadicon (like

) is ALSO shown. So I have the image + the icon.
What do I need to change to have a space shown when there's no threadicon selected in all forums (but the cds forum), and only a thread image in the cds forum?