vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   [RELEASE vB2.0] quick 'who posted' (https://vborg.vbsupport.ru/showthread.php?t=10707)

03-08-2001 01:55 AM

man you're just one awsome hacking machine. You just keep on coming and coming and each time they get better and better. :)

03-08-2001 12:05 PM

heh. Nice hack.. might have to install once our site is ready to move to vb 2.0 beta 2. *cough* Rat *cough* Well... there are other reasons for our delay, but.... it's cool. :D

03-08-2001 04:13 PM

Excellent hack.

Keep up the good work.

03-09-2001 12:22 AM

brilliant. Just installed it and it works perfectly. 5 Stars!

03-09-2001 04:08 PM

Cool! Many thanks for that - my users will appreciate it :)

03-10-2001 12:32 PM

http://www.jeuxwebmasters.com/forums...?s=&forumid=19

Nice :)

03-16-2001 03:36 PM

one thing i was wondering, when you move a thread you get the "-" as the number of replies. With this hack it is no underlined because it still works but looks a little silly. Is there any way to not have this when the thread is moved. I would imagine not because you can't do and if elseif routine in the templates but just thought i would ask.

03-16-2001 03:52 PM

It would be fairly easy to implement that, but as you pointed out, it would require a little condition to be placed in the php code, rather than a simple template change.

If you really want it, this is the code to modify:

Find in forumdisplay.php:
Code:

    } else {
      if ($foruminfo[allowratings]) {

replace with
Code:

    } else {
      $thread[replycount] = "<a href=\"javascript:who($thread[threadid])\">$thread[replycount]</a>";
      if ($foruminfo[allowratings]) {

This code should be around line 390... but I can't give you an exact line number, as my forumdisplay.php doesn't really look much like the original ;)

You will also need to remove the hyperlink from the forumdisplaybit template.

03-22-2001 01:57 PM

any way to modify something like this to show who subscribed or selected email notify on a thread ?

03-22-2001 02:49 PM

Yep, open whoposted.php and select the whole SQL query, and replace it with this:
Code:

$posts = $DB_site->query("SELECT
COUNT(postid) AS posts, post.userid, user.username, subscribethread.userid AS subuserid
FROM post LEFT JOIN user USING (userid)
LEFT JOIN subscribethread ON
  (subscribethread.threadid=post.threadid AND subscribethread.userid=user.userid)
WHERE post.threadid=\"$threadid\"
GROUP BY post.userid ORDER BY posts DESC");

then further down the code, find this:
Code:

eval("\$posters .= \"".gettemplate("whopostedbit")."\";");
and immediately above it, add this:
Code:

        if ($post[userid]==$post[subuserid]) $subscribed = " <smallfont>[subscribed]</smallfont>";
        else $subscribed = "";

then open your whopostedbit template and just after the closing </a> of the profile link, add $subscribed.

That oughta do it :)


All times are GMT. The time now is 12:06 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.01177 seconds
  • Memory Usage 1,733KB
  • 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
  • (5)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete