vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   User Titles (https://vborg.vbsupport.ru/showthread.php?t=39569)

Sigon 06-07-2002 07:09 PM

Awesome! If you need any help let me know!

Sigon 06-07-2002 07:09 PM

btw I am actually installing the archive hack now

Xenon 06-07-2002 07:13 PM

1 Attachment(s)
:)
i like to hear that :)

ok, the code is written, but ther is no design, make it like you want it :)

template showtitles:
Code:

{htmldoctype}
<html>
<head><title>$bbtitle - Titles</title>
$headinclude
</head>
<body>
$header

<table><tr><td>Min Posts</td><td>Usertitle</td></tr>
$titletext
</table>
$footer

</body>
</html>

and upload this file

Sigon 06-07-2002 08:08 PM

Nice work m8! I am going to customize it a bit but great work! Thanks much!

Xenon 06-07-2002 09:42 PM

you're welcome :)

Chris M 06-07-2002 11:37 PM

Cool hack!

Satan

Xenon 06-08-2002 12:31 PM

thanks ;)

Chris M 06-08-2002 02:13 PM

Your welcome;)

How would you edit this to find out about Avatars?

Satan

Boofo 06-08-2002 03:32 PM

I need to have the User Title and Minimum Posts as two sparate variables in the titles.php without any formatting whatsoever in the php file, can it be done? Please? :)

Quote:

Originally posted by Xenon
:)
i like to hear that :)

ok, the code is written, but ther is no design, make it like you want it :)

template showtitles:
Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head><title>$bbtitle - Titles</title>
$headinclude
</head>
<body>
$header

<table><tr><td>Min Posts</td><td>Usertitle</td></tr>
$titletext
</table>
$footer

</body>
</html>

and upload this file


Xenon 06-08-2002 03:53 PM

you'll have a problem: since you don't know how much titles you have, you can't make dynamic variables because in the templates you cannot make a loop to call them all.
you maust make a small sort of formating, or you make your template hardcoded to 3 or 4 or whatever count of your titles..

but if you want to do so:
replace this
PHP Code:

$titletext="";
  while(
$title=$DB_site->fetch_array($titles)) {
    
$titletext.="<tr><td>".$title[minposts]."</td><td>".$title[title]."</td></tr>";
  } 

with this:
PHP Code:

$counter=0;
  while(
$title=$DB_site->fetch_array($titles)) {
    
$titletext[$counter]=$title[title];
    
$titleposts[$counter]=$title[minposts];
    
$counter++;
  } 

then you can user $titletext[x] and $titleposts[x] in your templates


All times are GMT. The time now is 11:08 AM.

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.03412 seconds
  • Memory Usage 1,738KB
  • 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
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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