Status
Not open for further replies.

StupidGlitch

Active Member
2,577
2008
538
0
Right i'm able to do it for vBulletin easy, just can't figure it out for IPB

I'm using 2.3, i've installed the forum icons mod, so it's taken away the new/old images so needing a " NEW! " next to the forum description when a new post is in that section.

Anyhelp please.
 
2 comments
Do you want it on the Board index or the Forum index?

your edits will be in

(Forum Index):
Goto ACP > Look and Feel > Skin > Forum Index > render_forum_row

(Board Index):
Goto ACP > Look and Feel > Skin > Board Index > ForumRow

Be more specific and I could provide more specific instructions.

 
Bored index i'm wanting on it on.

Where the new posts icon is, i've added forumicons so users have no idea if theres a new post or not unless they click on the section and browse it.

Heres my current code.

Code:
<tr> 
            <td align="center" class="row2" width="1%">{$data['img_new_post']}</td>
            <td class="row2">
                {$data['_queued_img']}<b><a href="{$this->ipsclass->base_url}showforum={$data['id']}">{$data['name']}</a></b>
                               <if="$this->ipsclass->vars['dp23_fviews_enable'] && in_array($this->ipsclass->member['mgroup'], explode(',',$this->ipsclass->vars['dp23_fviews_groups'] ) )">({$this->ipsclass->lang['dp23_views']}{$data['fviews']})</if>
                <br />
                <span class="forumdesc">{$data['description']}{$data['show_subforums']} 
                <if="$data['moderator']">
                    <br /><i>{$data['moderator']}</i>
                </if>
                </span>
                {$data['_queued_info']}
            </td>
            <td align="center" class="row1"><span class='mesaj_sayi1'>{$data['topics']}</span></td>
            <td align="center" class="row2"><span class='mesaj_sayi'>{$data['posts']}</span></td>
            <td class="row1" nowrap="nowrap">{$data['last_unread']} <span>{$data['last_post']}<br /><b>{$this->ipsclass->lang['in']}:</b>&nbsp;{$data['last_topic']}<br /><b>{$this->ipsclass->lang['by']}:</b> {$data['last_poster']}</span></td>
        </tr>
 
Status
Not open for further replies.
Back
Top