vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Design and Graphics Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=168)
-   -   How to apply a style to a single page only (https://vborg.vbsupport.ru/showthread.php?t=178484)

lackhand 05-08-2008 01:41 AM

How to apply a style to a single page only
 
Let's say I want to have the FAQ pages have a different style than the rest of my board. How would I go about doing that? I know how to make certain forums and categories have certain styles, but cannot figure out how to do the same for non-forum pages. I'm not wanting to do template edits, I am already accustomed to this and it wouldn't serve my needs. Thanks.

Kirk Y 05-08-2008 01:56 AM

If by style you mean a separate skin, then the following should work.

Create a new plugin using hook location 'style_fetch' with the following:
Code:

if (THIS_SCRIPT == 'faq'){
$styleid = X;
}

Change X to the Style ID you'd like to use.

Shelby 05-08-2008 02:01 AM

Thanks for that Kirk.

Wonder if it's possible to delineate it further. If FAQ ID = X, then Y.

Kirk Y 05-08-2008 02:08 AM

Sure, just add a check using the $faqparent var.

Code:

if (THIS_SCRIPT == 'faq' AND $faqparent == X){
$styleid = Y;
}

For multiple:
Code:

if (THIS_SCRIPT == 'faq')
{
    switch ($faqparent)
    {
        case X:
            $styleid = A;
            break;
        case Y:
            $styleid = B;
            break;
        case Z:
            $styleid = C;
            break;
    }
}


lackhand 05-08-2008 02:12 AM

Quote:

Originally Posted by Kirk Y (Post 1512232)
If by style you mean a separate skin, then the following should work.

Create a new plugin using hook location 'style_fetch' with the following:
Code:

if (THIS_SCRIPT == 'faq'){
$styleid = X;
}

Change X to the Style ID you'd like to use.

Thanks, I'll give that a try. Seems like what I need!

Sweet! This works! Thank you!


All times are GMT. The time now is 01:45 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.00945 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
  • (4)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