MyBB Community Forums

Full Version: remove last post option from index
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i remove last post option from index
http://gyazo.com/3597fc62569872390eadef52b01b5ad7
(2012-11-12, 03:10 AM)elite000 Wrote: [ -> ]How can i remove last post option from index
http://gyazo.com/3597fc62569872390eadef52b01b5ad7

You will have to edit 2 templates.

First at the forumdisplay_thread template find the following code and either remove it or comment it out:

<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: right;">
		<span class="lastpost smalltext">{$lastpostdate} {$lastposttime}<br />
		<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a>: {$lastposterlink}</span>
	</td>


Same procedure at the forumdisplay_threadlist template with the following code:

			<td class="tcat" align="right" width="20%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></span></td>

That should do the trick.