1
I'm trying to change the Recent Topics Block so that it does not have the time of the last post in the block.
I'm still kinda' fuzzy on the use of the templating system. I have changed the template several times. When I go to the block admin area for that block then hit edit template, I make the changes, then hit View (why it doesn't say submit, I'm not sure - be glad for an explanation). It looks like it has changed when I hit view but the block still has the column with last post details. Why?
Here's the relevant part of the template after the change:
<table class="outer" cellspacing="1">
<{if $block.full_view == true}>
<tr>
<th><{$block.lang_forum}>th>
<th><{$block.lang_topic}>th>
<th align="center"><{$block.lang_replies}>th>
<th align="center"><{$block.lang_views}>th>
<th align="right"><{$block.lang_lastpost}>th>
tr>
<{foreach item=topic from=$block.topics}>
<tr class="<{cycle values="even,odd"}>">
<td><a href="<{$xoops_url}>/modules/newbb/viewforum.php?forum=<{$topic.forum_id}>"><{$topic.forum_name}>a>td>
<td><a href="<{$xoops_url}>/modules/newbb/viewtopic.php?topic_id=<{$topic.id}>&forum=<{$topic.forum_id}>&post_id=<{$topic.post_id}>#forumpost<{$topic.post_id}>"><{$topic.title}>a>td>
<td align="center"><{$topic.replies}>td>
<td align="center"><{$topic.views}>td>
<td align="right"><{$topic.time}>td>
tr>
<{/foreach}>
<{else}>
<tr>
<td class="head"><{$block.lang_topic}>td>
<td class="head" align="center"><{$block.lang_replies}>td>
tr>
<{foreach item=topic from=$block.topics}>
<tr class="<{cycle values="even,odd"}>">
<td><a href="<{$xoops_url}>/modules/newbb/viewtopic.php?topic_id=<{$topic.id}>&forum=<{$topic.forum_id}>"><{$topic.title}>a>td>
<td align="center"><{$topic.replies}>td>
tr>
<{/foreach}>
<{/if}>
table>
Obviously, I'm failing to grasp something. I have searched but am still clueless.
Oh, and I do not have it set to the full display in the blcok options.
Thanks for any help!