Add this to the phpinclude_start template on a new line:
PHP Code:
// ## Some custom functions to check what type of forum forumid x is
// ## Code credits go to xenon
// ######################## Returns list of forumid's that are customforums #
function fetch_customforum_list()
{
$mod_forums = '11, 7, 6'; // enter your forumid's here
return $mod_forums;
}
// #################### This checks if the current forum is a customforum #
function is_custom_forum($forumid = 0)
{
global $foruminfo;
if ($forumid == 0)
{
$forumid = $foruminfo['forumid'];
}
eval('$retval = in_array($forumid, array(' . fetch_customforum_list() . '));');
return $retval;
}
// ## End custom forum functions
Note this line:
PHP Code:
$mod_forums = '11, 7, 6'; // enter your forumid's here
enter the forumid's of all forums you want to show 'field6' in there.
Then in the template FORUMDISPLAY find:
HTML Code:
<td class="thead" align="center" nowrap="nowrap"><a href="$sorturl&order=desc&sort=replycount">$vbphrase[replies]</a> $sortarrow[replycount]</td>
Change to:
HTML Code:
<if condition="is_custom_forum($thread[forumid])">
<td class="alt1" align="center">$thread[field6]</td>
<else />
<td class="alt1" align="center"><a href="#" onclick="who($thread[threadid])">$thread[replycount]</a></td>
</if>
Then in the template threadbit find:
HTML Code:
<td class="alt1" align="center"><a href="#" onclick="who($thread[threadid])">$thread[replycount]</a></td>
Change to:
HTML Code:
<if condition="is_custom_forum($thread[forumid])">
<td class="alt1" align="center">$thread[field6]</td>
<else />
<td class="alt1" align="center"><a href="#" onclick="who($thread[threadid])">$thread[replycount]</a></td>
</if>