View Subforums »  Show posts from    to     

Icy Phoenix


Old Support Topics - View Subforums



stockice [ Mon 07 Jun, 2010 00:48 ]
Post subject: View Subforums
how I can make the subforums be seen as a list?

YES:


2z5lt12


NO:


311whhk


Mighty Gorgon [ Thu 10 Jun, 2010 23:41 ]
Post subject: Re: View Subforums
Sorry, but I don't understand what you really need.

Anyway the template you are talking about is: index_box.tpl


KugeLSichA [ Sun 20 Jun, 2010 13:38 ]
Post subject: Re: View Subforums
Hey...

I Use Subforums as List on my site...

Here is the codechange

OPEN includes/functions_categories_hierarchy.php
FIND
Code: [Hide] [Select]
else
{
$wlast_post = '<a href="' . append_sid(VIEWTOPIC_MG . '?' . POST_POST_URL . '=' . $wdata['tree.topic_last_post_id']) . '#p' . $wdata['tree.topic_last_post_id'] . '">';
$wlast_post .= '<img src="' . $wfolder_image . '" alt="' . $wfolder_alt . '" title="' . $wfolder_alt . '" /></a>&nbsp;';
}

REPLACE WITH
Code: [Hide] [Select]
else
{
$wlast_post = '&nbsp;<a href="' . append_sid(VIEWTOPIC_MG . '?' . POST_POST_URL . '=' . $wdata['tree.topic_last_post_id']) . '#p' . $wdata['tree.topic_last_post_id'] . '">';
$wlast_post .= '<img src="' . $wfolder_image . '" alt="' . $wfolder_alt . '" title="' . $wfolder_alt . '" /></a>&nbsp;';
}


FIND
Code: [Hide] [Select]
if ($link != '')
{
$links .= (($links != '') ? ', ' : '') . $wlast_post . $link;
}

REPLACE WITH
Code: [Hide] [Select]
if ($link != '')
{
$links .= (($links != '') ? ',<br />' : '') . $wlast_post . $link;
}




Powered by Icy Phoenix