vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   Trying to exclude a template using This Script but I keep getting errors (https://vborg.vbsupport.ru/showthread.php?t=327104)

Scalemotorcars 02-24-2019 02:27 AM

Trying to exclude a template using This Script but I keep getting errors
 
Ive read the posts and tried several ways but all keep giving me errors. Im using 4.2 on a php5 server. Any help would be great. Thanks.

All Im trying to do is exclude a template from one specific page using the "This Script" from that page.

Code:

<if condition="THIS_SCRIPT != 'model_paint_database'">
stuff to show on all pages except model_paint_database page
</if>

This is the error I get while attempting the template change.
Code:

The following error occurred when attempting to evaluate this template:
%1$s
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.

This is the warning that is displayed at the top of the page.
Code:

Warning: Invalid argument supplied for foreach() in ..../includes/functions.php on line 3822
--------------- Added [DATE]1550982733[/DATE] at [TIME]1550982733[/TIME] ---------------

Actually, I just noticed something and I need to exclude it from 2 pages. It runs a JS that conflicts with those 2 pages.

Thanks again.

MarkFL 02-24-2019 02:36 AM

It looks like you're using vB 3.x template logic. :)

Scalemotorcars 02-24-2019 02:44 AM

I followed directions for VB4 but you may be right. :rolleyes:

The plugin for the template is

Code:

$templater = vB_Template::create('quickcalc');
$templatevalues['quickcalc'] = $templater->render();
vB_Template::preRegister('quickcalc', $templatevalues);

$templater = vB_Template::create('footer');
$templatevalues['footer'] = $templater->render();
vB_Template::preRegister('footer', $templatevalues);

On the footer template, I have the standard vb:raw

Code:

{vb:raw quickcalc}
And the template is cached

So, any ideas on how to exclude this template from just 2 pages?

MarkFL 02-24-2019 02:48 AM

What I mean is you want to use the following format within the template:

Code:

<vb:if condition="THIS_SCRIPT != 'model_paint_database'">
        stuff to show on all pages except model_paint_database page
</vb:if>


Scalemotorcars 02-24-2019 02:54 AM

Good lord, how did I not see that? Works perfectly on the one page.

Any clue how to exclude on two pages? You know This Script and This Script. I cant find how to do this.

And thanks for the help....

--------------- Added [DATE]1550986504[/DATE] at [TIME]1550986504[/TIME] ---------------

Nevermind I just hardcoded the 2nd page to exclude that template. Its not ideal but it works.

MarkFL 02-24-2019 05:05 AM

If you want to exclude multiple scripts, I would use for the condition:

Code:

!in_array(THIS_SCRIPT, array(script1, script2, ...))


All times are GMT. The time now is 06:23 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.01427 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
  • (7)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete