vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   New posts since last visit (https://vborg.vbsupport.ru/showthread.php?t=111124)

TurboLaserAWD 03-22-2006 08:39 PM

New posts since last visit
 
Okay so I used to have this simple code when I had a phpbb board that allowed me to put a number next to the "Posts since last visit" link. It simply showed the numer of posts since the last visit. I really want to get it on my vBulletin board (I have 3.5.1). I've already tried searching many times for something as simple but to no avail. Everything I've tried either didn't work or did more than I wanted it to. I even tried the one by Zachary that looked simple enough and it wouldn't work for me. I use the inactivity/cookie based read marking system.

I know vBulletin uses much more complicated code so my question is this: is there any way to implement the following code that was used on my old board to add a number next to either "New Posts" or in the Navbar at the top right. If so where do I put it and what portions need to be changed to match the vBulletin tables? TIA. :)

Code:

if( $userdata['session_logged_in'] )
{
 $sql = "SELECT COUNT(post_id) as total
  FROM " . POSTS_TABLE . "
  WHERE post_time >= " . $userdata['user_lastvisit'] . "
  AND poster_id != " . $userdata['user_id'];
 $result = $db->sql_query($sql);
 if( $result )
 {
  $row = $db->sql_fetchrow($result);
  $lang['Search_new'] = $lang['Search_new'] . " (" . $row['total'] . ")";
 }
}



All times are GMT. The time now is 10:12 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01027 seconds
  • Memory Usage 1,708KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete