vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   track users by # of posts in a certain forum? (https://vborg.vbsupport.ru/showthread.php?t=21645)

Cruz 06-30-2001 02:05 PM

has anyone/can anyone make a hack that would track a user's number of posts per a certain forum? i.e they would have 2 post counts, 1 being the main post count, and 1 being the count for that certain forum. Thx :)

Essam 06-30-2001 06:54 PM

Yeah, i need this too, to use with auto group assignment hack.

Cruz 07-12-2001 01:23 PM

^bumped^

roy7 07-12-2001 02:06 PM

I thought this might be easy, and it was. :)

In showthread.php go to line 488. You'll see something like:

Code:

    } else { 
      $post[signature] = "";
    }
} else {

change it to:

Code:

    } else { 
      $post[signature] = "";
    }

    $forumcount_result = $DB_site->query("select count(*) as forumposts from post,thread where post.threadid=thread.threadid and post.userid=" . $post[userid] . " and thread.forumid=" . $curforumid);
    $forumcount_row=$DB_site->fetch_array($forumcount_result);
    $post[forumposts] = $forumcount_row[forumposts];
    $DB_site->free_result($forumcount_result);
} else {


Go down about 6 lines where you see:

Code:

$post[posts]="N/A";
and add a line so you have:

Code:

$post[posts]="N/A";
$post[forumposts]="N/A";

Finally, go to the Postbit Template named "postbit".

Near the bottom of the initial window you'll see:

Code:

Posts: $post[posts]</smallfont></td>
Change it to:

Code:

Posts: $post[posts]<br>
Forum Posts: $post[forumposts]</smallfont></td>

Be sure each line of code is on a single line, so if you copy/paste watch that it doesn't embed some newlines in there.

Let me know how it goes for you please.

-Jonathan


All times are GMT. The time now is 07:26 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.01171 seconds
  • Memory Usage 1,711KB
  • 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
  • (6)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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