vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   How would I do this? (https://vborg.vbsupport.ru/showthread.php?t=953)

06-07-2000 12:51 AM

In showthread.php you have the variable.

eval("\$pagenav = \"".gettemplate"
showthread_numpages")."\";");

So it will show the number of pages a thread is long.

I have set up another template called showthread_numpages2
and I want it to call on this template when the number of pages is one.

How would I set up an if else statement here to either pull up showthread-numpages2 if the page count is 1 or showthread-numpages if it is greater than 1?

Thanks,
Parker

06-08-2000 09:27 AM

Ok,

This is what I have written and it doesn't work.

if ($pagenav==1) {
eval("\$pagenav = \"".gettemplate("showthread_numpages2")."\";");
} else {
eval("\$pagenav = \"".gettemplate("showthread_numpages")."\";");
}

showthread_numpages2 is a second template that I have written that says.

This thread is 1 page long.

So now no matter how many pages long it is it goes to this variable instead of showthread_numpages.

Any ideas?

Parker

06-08-2000 09:52 AM

Try

Find:
Code:


  eval("\$pagenav = \"".gettemplate("showthread_numpages")."\";");

Replace with:
Code:

  if ($totalpages==1) {
      eval("\$pagenav = \"".gettemplate ("showthread_numpages2")."\";");
 } else {
  eval("\$pagenav = \"".gettemplate("showthread_numpages")."\";");
}

Quote:

Originally posted by Parker Clack
Ok,

This is what I have written and it doesn't work.

if ($pagenav==1) {
eval("\$pagenav = \"".gettemplate("showthread_numpages2")."\";");
} else {
eval("\$pagenav = \"".gettemplate("showthread_numpages")."\";");
}

showthread_numpages2 is a second template that I have written that says.

This thread is 1 page long.

So now no matter how many pages long it is it goes to this variable instead of showthread_numpages.

Any ideas?

Parker


06-08-2000 02:35 PM

Moonwolf:

Thanks

Parker

06-09-2000 01:22 PM

Moonwolf:

I tried that and it didn't work. This is what I have.

if ($threadinfo[posts]>$perpage) {

$totalpages=$threadinfo[posts]/$perpage;
if ($totalpages!=intval($totalpages)) {
$totalpages=intval($totalpages)+1;
}

if ($pagenumber=="lastpage") {
$pagenumber=$totalpages;
}

if ($totalpages==1) {
eval("\$pagenav = \"".gettemplate("showthread_numpages2")."\";");
} else {
eval("\$pagenav = \"".gettemplate("showthread_numpages")."\";");
}

It still does not dispaly the template showthread_numpages2
when there is only one page.

Parker


All times are GMT. The time now is 10:30 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.01050 seconds
  • Memory Usage 1,719KB
  • 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
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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