vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=195)
-   -   Chestnut Style (https://vborg.vbsupport.ru/showthread.php?t=126863)

mbulmer 05-13-2007 07:07 PM

Seems to be working okay under vB 3.6.6 without having done any template reversions. I'll post if any of our members report any bugs.

Shelly 05-13-2007 08:30 PM

when I installed it, the lay out is all tweaked. Everything (like the buttons, posts in thread and new topics) all sit to the left and the right side of the forum is blank. also the category bars are gone. Its all white and the forum looks all mixed together.

Floob 05-16-2007 08:09 AM

Quote:

Originally Posted by joergh (Post 1246142)
Allan,

it is a wonderful skin. Please be so kind to update it for vb 3.6.6 :)

Thanks for your great work and sharing it with the community!

joergh

Can this be updated for 3.6.6 / 3.6.7 ? I'm sure a few of us will be happy to donate for that.

talenak 05-20-2007 06:31 PM

How do I get THIS mod to work with this style.

This is makin me insane.

SCRIPT3R 05-20-2007 06:50 PM

Quote:

Originally Posted by talenak (Post 1251599)
How do I get THIS mod to work with this style.

This is makin me insane.

just be sure the navbar template is edited correctly... you'll most likely have to do it yourself.

off-hand, i think...
PHP Code:

<td id="custom_links" class="vbmenu_control"><a href="#custom_links">$vbphrase[custom_links_link]</a> <script type="text/javascript"vbmenu_register("custom_links"); </script></td>
$custom_singlelinks 


talenak 05-20-2007 06:57 PM

The navbar buttons are added in header for this style though. I honestly haven't got a clue where I'd even put your code at..
Then the rollover, I already have the buttons made and the ajax stuff in place. But the closest I've managed to get to adding a 2nd dropdown menu is just copying the quick links code :(

This is what the code for quick links is (i already have the buttons made and in place so that all works. it's just getting this to work with the mod)

Code:

<!-- Liens -->
<if condition="$show['member']">
<td width="93">
<table width="93"  border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="background:#FFFFFF url($stylevar[imgdir_misc]/bouton_liens.gif);" id="usercptools"><a href="$show[nojs_link]#usercptools" rel="nofollow"
                onmouseover="JSFX.fadeIn('liens')"
                onmouseout="JSFX.fadeOut('liens')"><img
                src="$stylevar[imgdir_misc]/bouton_liens.gif" name="liens"  width="93" height="40" border="0" class="imgFader" id="liens" alt="" /></a><script type="text/javascript"> vbmenu_register("usercptools", true); </script></td>
</tr>
</table>
</td>
</if>
<!-- /Liens -->


SCRIPT3R 05-20-2007 07:11 PM

Quote:

Originally Posted by talenak (Post 1251622)
The navbar buttons are added in header for this style though. I honestly haven't got a clue where I'd even put your code at..
Then the rollover, I already have the buttons made and the ajax stuff in place. But the closest I've managed to get to adding a 2nd dropdown menu is just copying the quick links code :(

ahh, i was thinking you might be using the default navbar. if you do want that navbar back, just revert your navbar template. if you want to create the new buttons along the top like in this style, you're gonna have to edit them for each link you want.

talenak 05-20-2007 07:24 PM

I think I'm getting somewhere... Even if I'm just making a big mess.
The attached image is what I've gotten so far. The Mall button is the button I made for it. So now, I guess how do I get the style's navbutton to work and hide the one the mod displays?

Code:

<!-- Mall -->
<if condition="$show['member']">
<td width="93">
<table width="93"  border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="background:#FFFFFF url($stylevar[imgdir_misc]/bouton_mall.gif);" id="custom_links"><a href="$show[nojs_link]#custom_links" rel="nofollow"
                onmouseover="JSFX.fadeIn('mall')"
                onmouseout="JSFX.fadeOut('mall')"><img
                src="$stylevar[imgdir_misc]/bouton_mall.gif" name="mall"  width="93" height="40" border="0" class="imgFader" id="mall" alt="" /></a><script type="text/javascript"> vbmenu_register("custom_links", true); </script></td>
$custom_droplinks_cat
$custom_singlelinks
</tr>
</table>
</td>
</if>
<!-- /Mall -->


Allan 05-20-2007 08:39 PM

Quote:

Originally Posted by talenak (Post 1251641)
I think I'm getting somewhere... Even if I'm just making a big mess.
The attached image is what I've gotten so far. The Mall button is the button I made for it. So now, I guess how do I get the style's navbutton to work and hide the one the mod displays?

Code:

<!-- Mall -->
<if condition="$show['member']">
<td width="93">
<table width="93"  border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="background:#FFFFFF url($stylevar[imgdir_misc]/bouton_mall.gif);" id="custom_links"><a href="$show[nojs_link]#custom_links" rel="nofollow"
        onmouseover="JSFX.fadeIn('mall')"
        onmouseout="JSFX.fadeOut('mall')"><img
        src="$stylevar[imgdir_misc]/bouton_mall.gif" name="mall"  width="93" height="40" border="0" class="imgFader" id="mall" alt="" /></a><script type="text/javascript"> vbmenu_register("custom_links", true); </script></td>
$custom_droplinks_cat
$custom_singlelinks
</tr>
</table>
</td>
</if>
<!-- /Mall -->


Look this: https://vborg.vbsupport.ru/showpost....&postcount=125

:)

tehQspm 05-20-2007 11:28 PM

Quote:

Originally Posted by talenak (Post 1213745)
The template warning in my acp drove me crazy, but you can get rid of the notices without reverting. Just go open the templates it's telling you are out of date and save them without making changes :)

That works. Although you should keep this in mind in the future should vb add something to a template that's needed for future functionality. I do know that with 3.6.6 they've added a bunch of template hooks to the templates.

I just manually went through comparing templates and adding the stuff for this style into each template. It's a long arduous process but worth it in the long run.

:)

talenak 05-21-2007 06:24 AM

Quote:

Originally Posted by Allan (Post 1251683)

I know Allan, I've used that post to add every menu item I have, but it doesn't work with the hack without manipulation :)

Manipulation I still haven't figured out completely. I have BOTH Mall buttons. The one I created, and the one the mod inserts.


tehQspm: I must be freakin blind, I didn't see my text quoted. I thought you were talking about the menu. I don't know how to read the code. I just GUESS. lol I'm a horrible guesser. The problem is it normally works. I don't discover the problems it creates til later and then I have a bigger mess than I needed to clean up. I haven't reverted the templates or saved them yet this time. I think I will take the time to figure it out if I can. Thanks for the advice :)



ETA: I just tried comparing the changes and it's so over my head it's embarassing. I don't have a clue how to manually integrate. I guess I'll just leave it alone and hope Allan is possessed with the fervent desire to make it fully compatable :D

tehQspm 05-23-2007 02:01 AM

I know what you mean, I had trouble with the compare feature too. For the most part the only thing that needed to be added to the majority of templates is the small shadow at the bottom of each section (or table), the html code is:
HTML Code:

<div class="dcc"><div class="dcg"></div><div class="dcd"></div></div>
that gets placed at the closure of a lot of tables in the templates. But some templates do have other stuff added to them.

I also found that I had to edit the navbar template since the navbar links are removed from it for this style and put into header instead. The upgrade restored navbar.

LaCN 05-30-2007 01:33 PM

Quote:

Originally Posted by Allan (Post 1245917)
Normal, this style isn't create for vB 3.6.6, and in this version, more templates have changed :p

Could u tell us if you'll update this style to 3.6.6/3.6.7 ?

faramir8360 05-30-2007 08:42 PM

Quote:

Originally Posted by LaCN (Post 1257590)
Could u tell us if you'll update this style to 3.6.6/3.6.7 ?

Quote!!!!!!! :cool::cool::cool:

This skin is great!! :eek: :eek:
Allan, please, tell us if this skin will be update soon, if you can.. ;)

Thank you so mutch! Bye from Italy! :up:

Allan 05-30-2007 09:01 PM

It will be put on sale ;)

XHTML et CSS 100 % compatible and vB 3.6.7 OK

Price 15? ^^

faramir8360 05-30-2007 09:20 PM

Quote:

Originally Posted by Allan (Post 1257929)
It will be put on sale ;)

XHTML et CSS 100 % compatible and vB 3.6.7 OK

Price 15? ^^

I don't know why, but I felt this. :D :D
We'll wait the upgrade. Thanks Allan. :up:

Allan 05-30-2007 10:15 PM

Quote:

Originally Posted by faramir8360 (Post 1257943)
I don't know why, but I felt this. :D :D
We'll wait the upgrade. Thanks Allan. :up:

One week i think :)

:Judge: 06-01-2007 08:38 AM

Quote:

Originally Posted by Allan (Post 1257964)
One week i think :)

I would like to know when the newest version is ready, not sure where you plan to sell it from so please make a note when it's ready. Thanks!

Allan 06-01-2007 09:10 AM

Quote:

Originally Posted by :Judge: (Post 1258865)
I would like to know when the newest version is ready, not sure where you plan to sell it from so please make a note when it's ready. Thanks!

She is already ready, me sets up the system of sale on another forum ;)

NS_007 06-01-2007 01:25 PM

hmm paid now? :(

Guess I'll dump this one and keep looking. That's a shame, my users enjoyed this one!

LaCN 06-01-2007 01:53 PM

Quote:

Originally Posted by Allan (Post 1257929)
It will be put on sale ;)

XHTML et CSS 100 % compatible and vB 3.6.7 OK

Price 15? ^^

Will that mean u'll have a new update as soon as vBulletin releases a forum update ?

amitpatel_3001 06-02-2007 08:09 PM

Hope the installation details would have been better ;)

talenak 06-02-2007 09:35 PM

Uninstalled, but very fondly remembered.

fortify 06-03-2007 12:47 AM

Thats his plan get people to use it so they will be forced to buy the new version

talenak 06-03-2007 03:35 AM

Give the guy a break. He gave us a beautiful free style to use for quite a few versions. He has every right to charge for it. I can't afford to pay for it or I would.

richiepearce 06-03-2007 01:56 PM

Where do we go to buy it?

Allan 06-03-2007 02:31 PM

Quote:

Originally Posted by richiepearce (Post 1260315)
Where do we go to buy it?

Soon a new forum for buy, for the moment, MP me ;)

LaCN 06-06-2007 09:08 PM

Please answer this question:

If we buy this style,
  1. will this be a lifetime deal with free upgrades ?
  2. will this style be updated within days from the vb-updates ?

Allan 06-06-2007 09:11 PM

Quote:

Originally Posted by LaCN (Post 1262738)
Please answer this question:

If we buy this style,
  1. will this be a lifetime deal with free upgrades ?
  2. will this style be updated within days from the vb-updates ?

1 - Free upgrade for one year
2 - Of course ^^

Dotara 06-06-2007 09:13 PM

That is great Allan.

Sofia 06-08-2007 09:13 AM

Yeaah, baby, this style has most installs on vb.org ! Great work :D

Heidrich 06-08-2007 01:51 PM

I have send you a PM... :D

Allan 06-08-2007 02:49 PM

Quote:

Originally Posted by Heidrich (Post 1264145)
I have send you a PM... :D

Yes, i reply you tonight ^^

Audentio 06-08-2007 09:17 PM

One of the best skins Ive ever seen, and Ive seen a lot of skins! :lol: Good work man, thanks!

alderwazeh 06-09-2007 03:18 PM

great style Allan
Thanks
the following images is not there in the misc folder...please advice
chestnut/misc/page_top_right.gif
chestnut/misc/page_top_left.gif
chestnut/misc/page_bottom_right.gif
chestnut/misc/page_bottom_left.gif

Allan 06-09-2007 03:35 PM

Quote:

Originally Posted by alderwazeh (Post 1264853)
great style Allan
Thanks
the following images is not there in the misc folder...please advice
chestnut/misc/page_top_right.gif
chestnut/misc/page_top_left.gif
chestnut/misc/page_bottom_right.gif
chestnut/misc/page_bottom_left.gif

This images don't exist in the origin style.

alderwazeh 06-10-2007 03:59 AM

Quote:

Originally Posted by Allan (Post 1264865)
This images don't exist in the origin style.

Where I can get it because the corners are red x images. Please advice from where I should get it.
Thanks

Allan 06-10-2007 07:02 AM

Add screens please

:)

alderwazeh 06-11-2007 06:11 AM

Thanks Allan

I should admit I have modified your " header" "footer" and "navbar" as well to suit my need
finally I got these corners although i have tried to replace these images with the Blue steel style images but still have to rename it counterwise. I am not using this style now waiting for this problem to solve.

alderwazeh 06-12-2007 02:38 PM

Thanks Allan

I have managed to solve the problem.. the required images are attached
Thanks


All times are GMT. The time now is 09:46 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.01605 seconds
  • Memory Usage 1,844KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_html_printable
  • (1)bbcode_php_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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