1

Topic: Is there a way to remove the "New posts" functionality?

I don't like how newly posted topics get the "[ New Posts ]" tag attached to them. Is there a way I can disable this? Thanks.

2

Re: Is there a way to remove the "New posts" functionality?

Nevermind I figured it out:

Visit timeout       : 1 second
Online timeout : 0 seconds

Works as long as you don't care about "users online"

Re: Is there a way to remove the "New posts" functionality?

Why would you want to disable it? why not just remove it from the code?

Re: Is there a way to remove the "New posts" functionality?

You could just find this line in viewforum.php?

    $subject_new_posts = '<span class="newtext">[ <a href="viewtopic.php?id='.$cur_topic['id'].'&action=new" title="'.$lang_common['New posts info'].'">'.$lang_common['New posts'].'</a> ]</span>';

?and replace it with this:

$subject_new_posts = null;