Jump to content
WebFlake
  • 0

How i can do this


ATIRadeon

Question

6 answers to this question

Recommended Posts

  • 0

In boardIndexTemplate find:

<th scope='col' class='col_c_stats stats'>{$this->lang->words['stats']}</th>

Change that to:

<th scope='col' class='col_c_stats stats'>Topics</th>

Then under that, add this:

<th scope='col' class='col_c_stats stats'>Posts</th>

Now a bit further in the template,  find the following code:

<td class='col_c_stats ipsType_small'>
	<ul>
		<li><strong>{$forum_data['topics']}</strong> {$this->lang->words['topics']}</li>
		<li><strong>{$forum_data['posts']}</strong> {$this->lang->words['replies']}</li>
	</ul>
</td>

Change that to:

<td class='col_c_stats ipsType_small'>
	<ul>
		<li><strong>{$forum_data['topics']}</strong> {$this->lang->words['topics']}</li>
	</ul>
</td>

<td class='col_c_stats ipsType_small'>
	<ul>
		<li><strong>{$forum_data['posts']}</strong> {$this->lang->words['replies']}</li>
	</ul>
</td>

I think this is right, but i haven't tested it. If it doesn't work then go back and undo the changes. (Follow these steps in reverse order)

  • Upvote 1
Link to comment
Share on other sites

  • 0

You need to edit the boardIndexTemplate. This code should be there somewhere.

<ul>
	<li><strong>{$forum_data['topics']}</strong> {$this->lang->words['topics']}</li>
	<li><strong>{$forum_data['posts']}</strong> {$this->lang->words['replies']}</li>
</ul>

You can edit and move this around where ever you want in the code, and give them their own columns.

  • Upvote 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...