How To Add the Number of New Posts since last visit to FORUMHOME

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    How To Add the Number of New Posts since last visit to FORUMHOME

    How do I add the number of new posts since last visit to my FORUMHOME?

    Originally posted by Jake Bunce
    Go to your:

    Admin CP -> Styles & Templates -> Style Manager -> « » -> PHP Include Code Templates -> phpinclude_start

    Add this code:

    PHP Code:
    // GET NUMBER OF NEW POSTS
    $newposts $DB_site->query_first("SELECT count(*) AS count FROM " TABLE_PREFIX "post WHERE dateline > '$bbuserinfo[lastvisit]'");

    // DETERMINE IF "POSTS" IS SINGULAR OR PLURAL
    if ($newposts[count] == 1)
    {
        
    $newposts[plural] = "";
    }
    else
    {
        
    $newposts[plural] = "s";

    Then go to your:

    Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Home Templates -> FORUMHOME

    Add this code where ever you want the message to show up:

    Code:
    <a href="search.php?$session[sessionurl]do=getnew">$newposts[count] new post$newposts[plural]</a>
    Last edited by Jake Bunce; Wed 14 Apr '04, 2:04pm.
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Working...