Lack of interest What's New?

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.
This suggestion has been closed. Votes are no longer accepted.
I had this function in my IPB community and my members really liked it. Bring able to define your time frame for your search is great and allows for people to stay connected with missed conversations.

Can a developer or someone that has poured over the code tell us if time is defined in the script somewhere we can tweak?

Jamie
 
I think it must a the core

However, take this temporary. It's create 2 tabs
One für "Post last 24h"
and
one for a direct access to your admin-webmailaccount.

Template: navigation
Find:
Code:
<li><a href="{xen:link 'find-new/threads'}">{xen:phrase whats_new}</a></li>

Insert below:
Code:
<li><a href="find-new/threads?days=1">Post last 24h</a></li>

<xen:if is="{$visitor.is_admin}">
<li><a href="http://YOUR_WEBMAIL_ACCOUNT" target="_blank"><b>Admin Webmail</b></a></li>
</xen:if>
 
Top Bottom