Quote:
Originally Posted by Zaki Shafqat
great job i loved this MOD
but its not showing the thumbnail for the sticky posts? what do i edit to show so it shows for sticky posts too? please help
|
This is what you have...
Code:
<if condition="$show[threadicons]">
<td class="alt2" align="center" valign="middle">
<if condition="$thread[thumbnaildisplay] AND !$thread[sticky]">
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]">
<img src="$thread[thumbnailurl]" alt="" border="0" width="$thread[thumbnailwidth]"/>
</a>
<else />
<if condition="$show[threadicon]">
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" />
</if>
</if>
</td>
</if>
This is what you need. All I did was delete the "is not a sticky" part of the conditional wich is bold and red above.
Code:
<if condition="$show[threadicons]">
<td class="alt2" align="center" valign="middle">
<if condition="$thread[thumbnaildisplay]">
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]">
<img src="$thread[thumbnailurl]" alt="" border="0" width="$thread[thumbnailwidth]"/>
</a>
<else />
<if condition="$show[threadicon]">
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" />
</if>
</if>
</td>
</if>
That was the threadbit template by the way.
Note: This will make all forums with thumbnails enabled have thread stickies with thumbnails. So you cant have some thumbnail threads with icons for stickies and some thumbnail threads with thumbnails for stickies.