vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Show Thread Enhancements - Threads List in PostBit (https://vborg.vbsupport.ru/showthread.php?t=145390)

Kalyse 08-07-2007 05:23 PM

Yeah I would love to see an exclude forum.

I have support forums on my boards and sometimes the user names their posts with sensitive information.

bigcurt 10-02-2007 11:47 PM

Would love to see either an exclude forums or a choose which forums to take it from..PLEEASE :).

AngelBlue 12-08-2007 08:27 PM

Here's a sample postbit from my forum.
Quote:

Originally Posted by my postbit
Join Date: Oct 2007
Location: USA
Posts: 568
Referrals: 1

Would it be possible for this mod to add, below that :

Threads: 20 !

Where "20" is the total number of threads they have, and "!" is a drop-down button that lists the threads and lets you jump to them?

That would look a bit prettier IMHO, and also be good for encouraging users to post more threads, by putting their thread count in their postbit.

Pure Dope 12-17-2007 02:23 AM

very server intensive? id assume yes.

Allan 10-28-2009 12:30 PM

Thank you :)

how to limit the number of characters ?

sd2310 10-28-2009 04:39 PM

Quote:

Originally Posted by Allan (Post 1907381)
Thank you :)

how to limit the number of characters ?

Two possibilities:
1. By modifying the SQL.
In the file, find:
Code:

SELECT threadid, title
and replace by:
Code:

SELECT threadid, LEFT(title,20) AS title
2. By adding PHP:
Find:
PHP Code:

eval('$mythreadsbits .= "' fetch_template('postbit_mythreadsbit') . '";'); 

and add before:
PHP Code:

$mythread['title'] = substr($mythread['title'],0,20); 

Change 20 by the maximum size desired


All times are GMT. The time now is 04:01 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.01093 seconds
  • Memory Usage 1,727KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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