1
On my clients site he uses a custom block for stories_block_top block. I have tried a few things over the week, and even the original block comes truncated no matter what I set the title length to in the blocks admin.
Here is the code to his modified block:
<img src="<{$xoops_url}>/themes/v2004/graphics/textNewStories.gif">
<table width="99%" border="0" cellspacing="5" cellpadding="5" class="box"> <tr>
<td width="20%">
<p align="center">
<img src="<{$xoops_url}>/themes/v2004/graphics/book24.gif" width="113" height="112"> td>
<td width="80%">
<{foreach item=news from=$block.stories}>
<img src="<{$xoops_url}>/themes/v2004/graphics/bullet.png"><a href="<{$xoops_url}>/modules/stories/article.php?storyid=<{$news.id}>"><{$news.title}>a> (<{$news.hits}>)<{$news.unread}><br>
<{/foreach}>
td>table>
Here is the code of the original:
<ul>
<{foreach item=news from=$block.stories}>
<li><a href="<{$xoops_url}>/modules/stories/article.php?storyid=<{$news.id}>"><{$news.title}>a> (<{$news.hits}>)<{$news.unread}>li>
<{/foreach}>
ul>
He is using XOOPS 2.0.16 on a server (private) with php 4.4.6 and MySQL 3.28 (soon to be upgraded).
If you need to see the site PM me for the link (it is an adult site so no link will be posted here).
Thanks in advance for your help.