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)
-   -   Blinking Introduction Text (https://vborg.vbsupport.ru/showthread.php?t=41321)

Velocd 08-13-2002 02:17 AM

Fixing bugs on my forum today I ran across this hack again and realized I could easily make it check to see if the user has a post made in the introduction thread.

----------------------------------

Assuming you have this hack installed already, and you want it to blink the introduction text UNTIL a member has made a thread in teh intro area, OR has below 10 posts (since sometimes they might now want to make a intro-thread), do this:

In index.php, find:
PHP Code:

           {
             if(
$bbuserinfo[usergroupid] == && $bbuserinfo[posts] == 0)
                {
                  eval(
"\$introtext .= \"".gettemplate("forumhome_introbit")."\";");
                  
$forum['title'] .= "$introtext";
                }
           } 

Replace it with:
PHP Code:

           {
             if(
$bbuserinfo[posts] < 10) {
             if (!
$check=$DB_site->query_first("SELECT postuserid FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid=3")) {
                  eval(
"\$introtext .= \"".gettemplate("forumhome_introbit")."\";");
                  
$forum['title'] .= "$introtext";
                }
             }
           } 

Now see where the forumid=3 is? Set this value to whatever your introduction forumid is.

And that is it. If you don't want it to check if the user has less than 10 posts, just comment out that if-statement.

TranceMaster 02-16-2003 02:45 PM

excellent man
just what i need :)

EchoHype.com 02-16-2003 03:02 PM

Hey velocd

very nice hack. useful and simple ;)

uomoragno 03-15-2003 02:02 PM

small modification :)

In index.php, find:

PHP Code:

eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";"); 

Above it place:

PHP Code:

$announcementsforumid=$DB_site->query_first("SELECT value FROM setting WHERE varname='announcementsforumid'");
if (
$bbuserinfo['lastvisitdate']=='Never') {

if(
$forum['forumid'] == $announcementsforumid['value'] )                {
                  eval(
"\$introtext .= \"".gettemplate("forumhome_introbit")."\";");
                  
$forum['title'] .= "$introtext";
               }
            }  
            else {
        if ((
$fview get_bbarraycookie('forumview'$forum['forumid'])) > $bbuserinfo['lastvisit']) {
             
$userlastvisit=$fview;
      } else {
             
$userlastvisit=$bbuserinfo['lastvisit'];
             }
             if (
$userlastvisit<$forum['lastpost']) {
             if(
$forum['forumid'] ==  $announcementsforumid['value'] )                {
                  eval(
"\$introtext .= \"".gettemplate("forumhome_introbit")."\";");
                  
$forum['title'] .= "$introtext";
               }
           } else {
            
          }
        } 

and

PHP Code:

INSERT INTO setting (settinggroupid,title,varname,value,description,optioncode,displayorder)
VALUES ('5','Blinking Tex Forum Id','Blinkforumid','',
'Which forum do you want to use a Blinking Text? Fill in the forumid, please.','','14')"); 


Dean C 03-15-2003 02:51 PM

What does that do uomoragno?

Also velocd - this hack was never added to the db :)?

- miSt

jbear6 03-15-2003 03:11 PM

Nice Hack! Would there be a way to call the members name in the flashing text? Something like: "c'mon {username} introduce yourself!"?

Thaks
Jbear6

Link14716 03-15-2003 06:24 PM

$bbuserinfo[username] would call the member's name :)

Xanthine 03-15-2003 06:57 PM

I keep getting a php error when adding the first block of code. hmmm

Splitfyre 06-26-2003 03:53 AM

Works great :)

Bulleh 06-26-2003 10:26 AM

nothing happens for me


All times are GMT. The time now is 02:24 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.01319 seconds
  • Memory Usage 1,752KB
  • 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_php_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
  • (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