vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=247)
-   -   Suite Style - [ThevBNinja.com] Pure Christmas 2012 (Add-ons Snow with options, light, countdown) (https://vborg.vbsupport.ru/showthread.php?t=274245)

zagman76 09-02-2012 11:04 PM

Hello - when I was installing this to prepare for this year, the following happened to my tabs, and suggestions? I am running vB 4.2 PL2.

https://vborg.vbsupport.ru/external/2012/09/43.png

m6speed 09-05-2012 03:47 PM

Quote:

Originally Posted by zagman76 (Post 2362135)
Hello - when I was installing this to prepare for this year, the following happened to my tabs, and suggestions? I am running vB 4.2 PL2.

https://vborg.vbsupport.ru/external/2012/09/43.png

mine is the same way

GhostHunter2010 09-06-2012 07:50 AM

to much work to be done.... not installed not nominated :D

Lucyloo 11-04-2012 01:38 PM

Does anyone know if this is compatible with version 4.2.0 please?

tambo 11-07-2012 07:09 AM

Quote:

Originally Posted by zagman76 (Post 2362135)
Hello - when I was installing this to prepare for this year, the following happened to my tabs, and suggestions? I am running vB 4.2 PL2.

Same here, although I'm on 4.1.12.

Navigation area was overhauled some time after 4.1. Been trying to apply the default style but with no luck.

Any chance of an update? You know... being as it's almost Christmas? :D

tambo 11-07-2012 06:37 PM

...and 12 hours later, I decided it was easier to rebuild it from scratch. :D

I just took the images for the header and navtabs, etc and built my own version as a child theme of my board's main theme, using the Pure Christmas templates as a guide. Couple of hours of fiddling with the CSS file and stylevars... and I have something I'm very happy with.

Not a faithful replication by any means, but it is easier to maintain.

Now... on to the snowfall!

faisaly.com 11-07-2012 07:02 PM

Why mention you have it working for vb4.2 if you dont share, makes no sense!

tambo 11-07-2012 10:10 PM

Because it works as a mashup with an existing 4.1.12 parent theme on my site which is, in itself, copyrighted code.

One couldn't simply export the XML and upload to another site - not only because I've been lazy and coded it sloppily, but also because the copyrighted code isn't mine to give away.

If I could, I would.

If I'm terminally bored at some point, I may have a crack at getting it working on a 4.2 test site, using the vB default theme as a starting point.

Webkinztown1 11-08-2012 07:28 PM

I found a simple fix for the nav bar issue in vb4.2.

In Style Manager, go to Style Variable Editor and scroll down to NavBar. Under navbar_tab_size, change the Units drop down menu to "px" and save.

Cusski 11-09-2012 10:01 PM

Work perfect vb4.2 pl3 with custom navbar and quicklinks bar, also had to change navbar_tab_size as units menu blank by default

CouponWCents 11-10-2012 08:56 PM

You rock Webkinztown1!!

doctorsexy 11-17-2012 06:42 PM

Has anyone got the sound to work on the lights....

its ok got it to work....

kylek 11-24-2012 08:02 PM

If having problems with snow or lights try this one - https://vborg.vbsupport.ru/showthrea...82#post2384682 Works and all the options are in your admincp.

lostincable 11-29-2012 05:42 AM

Is this working on 4.2?

invitezone 12-15-2012 08:52 PM

Working fine in 4.2
I had to change the navbar tab size to px like was suggested in one of the posts and all is well.
The snow is a bit rubbish though so I added another snow mod I found somewhere and it looks great.

The only issue is the quick style chooser has no links in it so once the theme is selected there is no changing out of it using the quick style chooser.
I would copy the code from another theme and overwrite it in this theme but I have no idea where to find it lol.

kylek 12-15-2012 09:07 PM

Its probably your footer template, had the same problem and once I reverted it the style chooser worked.

invitezone 12-16-2012 03:47 PM

Quote:

Originally Posted by kylek (Post 2390965)
Its probably your footer template, had the same problem and once I reverted it the style chooser worked.

Great advice, worked perfectly :D

thanks very much indeed.

kylek 12-01-2013 07:48 PM

Time to fire this one up for this year.

daniel792 12-11-2013 09:43 PM

I have a problem with sound lamps.. :(

sat gr 12-17-2013 09:12 PM

thanks for perfect skin
i install it in vBulletin® Version 4.2.1
all work ok but i have one problem not work buttons save , go advanced , delete , cancel
who i can fix it ?
thanks in advance

sat gr 12-20-2013 09:09 AM

any reply please?

sixxkilur 11-21-2016 06:11 AM

Quote:

Originally Posted by invitezone (Post 2390964)
Working fine in 4.2
I had to change the navbar tab size to px like was suggested in one of the posts and all is well.
The snow is a bit rubbish though so I added another snow mod I found somewhere and it looks great.

The only issue is the quick style chooser has no links in it so once the theme is selected there is no changing out of it using the quick style chooser.
I would copy the code from another theme and overwrite it in this theme but I have no idea where to find it lol.

Easy fix for the empty quick style chooser.

look in footer template and find

Code:

<if condition="$show['quickchooser']">
                <td class="tfoot">
                        <select name="styleid" onchange="switch_id(this, 'style')">
                                <optgroup label="$vbphrase[quick_style_chooser]">
                                        $quickchooserbits
                                </optgroup>
                        </select>
                </td>
        </if>
        <if condition="$show['languagechooser']">

replace the above code with.

Code:

<vb:if condition="$show['quickchooser']">
                        <select name="styleid" onchange="switch_id(this, 'style')">
                                <optgroup label="{vb:rawphrase quick_style_chooser}"><option class="hidden"></option></optgroup>
                                <vb:if condition="$quickchooserbits1">
                                        <vb:if condition="$quickchooserbits2">
                                        <optgroup label="&nbsp;{vb:rawphrase standard_styles}">
                                        </vb:if>                               
                                        {vb:raw quickchooserbits1}
                                        <vb:if condition="$quickchooserbits2">
                                        </optgroup>
                                        </vb:if>                                       
                                </vb:if>
                                <vb:if condition="$quickchooserbits2">
                                        <vb:if condition="$quickchooserbits1">
                                        <optgroup label="&nbsp;{vb:rawphrase mobile_styles}">
                                        </vb:if>
                                        {vb:raw quickchooserbits2}
                                        <vb:if condition="$quickchooserbits1">
                                        </optgroup>
                                        </vb:if>                                       
                                </vb:if>
                        </select>       
                </vb:if>



All times are GMT. The time now is 02:09 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.01374 seconds
  • Memory Usage 1,775KB
  • 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
  • (4)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
  • (22)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