Simple Machines Community Forum

SMF Support => SMF 1.1.x Support => Topic started by: PatrickPriest on June 29, 2008, 05:58:56 PM

Title: Is there a way to take off this...
Post by: PatrickPriest on June 29, 2008, 05:58:56 PM
Is there a way to take this link off the index page:

View the most recent posts on the forum.

Or... only have the subject show instead of the entire post?
Title: Re: Is there a way to take off this...
Post by: maxringo on June 29, 2008, 08:58:22 PM
BoardIndex.template.php file.

If you want to remove it.

Find and remove

<b><a href="', $scripturl, '?action=recent">', $txt[214], '</a></b>

find

<a href="', $scripturl, '?action=recent">', $txt[234], '</a>', $context['show_stats'] ? '<br />
<a href="' . $scripturl . '?action=stats">' . $txt['smf223'] . '</a>' : '', '


change to

', $context['show_stats'] ? '<br />
<a href="' . $scripturl . '?action=stats">' . $txt['smf223'] . '</a>' : '', '


Make sure you backup the file first!!
Title: Re: Is there a way to take off this...
Post by: ionia on November 08, 2008, 06:07:29 AM
Thank you, maxringo, it save me from troubling SMF team.  :)