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 - Avenger Blue Style by TheLastSuperman (https://vborg.vbsupport.ru/showthread.php?t=269253)

Andur1l 11-09-2011 08:16 PM

Hm, the user profile page decided to be weirdly colored with brown text and white backgrounds again. I'm pretty sure it has something to do with Microclassifieds, cause that's the only thing we've been updating outside of the style and considering its crappy code and its inclusion in the profiles .. yeah. Now I've just gotta figure out what it does .. or maybe it'll just return to normal by tomorrow again. :D

belowthebelt 11-10-2011 08:33 PM

Stunning style, it's beautiful.... totally think you did an awesome job mate.

This is the perfect mix of dark and light text, I went from an all black style to this and the members could not be more happy.

EuroBeat2 11-19-2011 02:27 AM

After upgrading VB from 4.1.7 to 4.1.8 member name in "Today's Birthday" is replaced by word "Array". I also have couple of mods installed like "who has visited today" "who has posted today" and now names are separated by two commas, while in all other installed themes by one comma. Any clue?

Tx.

EB

K4GAP 11-19-2011 09:05 PM

Upgraded to 4.1.8 and looks good!

One question,
I am running both fluid and fixed for my members selection of this style. I have a header I've built for the fixed style that doesn't necessarily fit the fluid style (to narrow). How can I distinguish one header image for the fixed and another image for the fluid? This IS NOT priority but if you have an answer readily available I'd appreciate knowing how to do this.

Thanks'
Gary
livinginkentucky.com

hexeditor 11-20-2011 10:31 AM

Nice style, Updated for 4.1.8??

EuroBeat2 11-20-2011 03:53 PM

Anyone who upgraded VB to 4.1.8 and have this theme installed care to share URL? I would like to know if it is just me having problems? I really love the style so I would like to have it working for my site.

Thank you.

EB

TheLastSuperman 11-20-2011 06:51 PM

Quote:

Originally Posted by EuroBeat2 (Post 2269419)
After upgrading VB from 4.1.7 to 4.1.8 member name in "Today's Birthday" is replaced by word "Array". I also have couple of mods installed like "who has visited today" "who has posted today" and now names are separated by two commas, while in all other installed themes by one comma. Any clue?

Tx.

EB

You must have some modification installed that interacts with Who's Online, a plugin or something to cause that.

Quote:

Originally Posted by GaryT (Post 2269709)
Upgraded to 4.1.8 and looks good!

One question,
I am running both fluid and fixed for my members selection of this style. I have a header I've built for the fixed style that doesn't necessarily fit the fluid style (to narrow). How can I distinguish one header image for the fixed and another image for the fluid? This IS NOT priority but if you have an answer readily available I'd appreciate knowing how to do this.

Thanks'
Gary
livinginkentucky.com

Profiles look decent now Gary? If you look at how I did it you'll see it's a work around so I hope your good there :D and as for your different header try this:

Edit template header and find:

Code:

                    <div align="center"><a name="top" href="{vb:link forumhome}"><img src="{vb:stylevar titleimage}" alt="{vb:raw vboptions.bbtitle}" /></a></div>
All you need to replace is the {vb:stylevar titleimage} variable you see inside the img src code with your new image url so it displays ;).

Code:

                    <div align="center"><a name="top" href="{vb:link forumhome}"><img src="images/avenger_blue/misc/a_different_blue_avenger_logo.png" alt="{vb:raw vboptions.bbtitle}" /></a></div>
Quote:

Originally Posted by hexeditor (Post 2269873)
Nice style, Updated for 4.1.8??

Should work fine on 4.1.8 although I have not tested, Gary as you can see above says it works fine however Eurobeat states he has a issue although in Eurobeats case I believe it's simply modification related. Remember it's a quick and simple install/check it out/uninstall with styles so give it a shot and report any issues that come up otherwise enjoy!

Quote:

Originally Posted by EuroBeat2 (Post 2269960)
Anyone who upgraded VB to 4.1.8 and have this theme installed care to share URL? I would like to know if it is just me having problems? I really love the style so I would like to have it working for my site.

Thank you.

EB

Again... I believe it's modification related, you can try these two methods to check:

1) Create a totally new default style, if it's fixed then we know for sure it was something in the style i.e. a change implemented in 4.1.8.
2) If the problem still persists after creating a new default style ^ then simply disable your plugins by following these instructions;

You can disable hooks (modifications and plugins) by doing the following:

Edit config.php and add this directly below <?php:

Code:

define('DISABLE_HOOKS', true);
Example:

Code:

<?php
define('DISABLE_HOOKS', true);
/*======================================================================*\
|| #################################################################### ||

Now save and upload that to includes/ and overwrite the original config.php. Now check to see if the array error still persist, if so you can now disable the modification you believe is the culprit until a update is released. Once disabled remove the added line you included in config.php and re-enable your other modifications :cool:.

EuroBeat2 11-20-2011 11:11 PM

Quote:

Originally Posted by TheLastSuperman (Post 2270034)
Again... I believe it's modification related, you can try these two methods to check:

1) Create a totally new default style, if it's fixed then we know for sure it was something in the style i.e. a change implemented in 4.1.8.

It didn't help. Same problem.

Quote:

Originally Posted by TheLastSuperman (Post 2270034)
2) If the problem still persists after creating a new default style ^ then simply disable your plugins by following these instructions;

After disabling it still didn't do nothing. Double commas appear in your style. Paul M who designed some of the plugins I used suggested Thats because it still have the old css in your custom theme that adds the comma, this was removed from default vb 418.

"Array" issue only occurred when using your style. All other styles I have installed including default had the birthday name and age correctly displayed. So I do not know what to do.

EB

TheLastSuperman 11-21-2011 02:33 AM

Quote:

Originally Posted by EuroBeat2 (Post 2270130)
It didn't help. Same problem.



After disabling it still didn't do nothing. Double commas appear in your style. Paul M who designed some of the plugins I used suggested Thats because it still have the old css in your custom theme that adds the comma, this was removed from default vb 418.

"Array" issue only occurred when using your style. All other styles I have installed including default had the birthday name and age correctly displayed. So I do not know what to do.

EB

[S]Wait for a update, I'll install 4.1.8 in the staging site on my pc (localhost etc) and see about the issues and release a update asap.[/S] Edit: Please see below.

TheLastSuperman 11-21-2011 05:30 PM

Quote:

Originally Posted by EuroBeat2 (Post 2270130)
It didn't help. Same problem.



After disabling it still didn't do nothing. Double commas appear in your style. Paul M who designed some of the plugins I used suggested Thats because it still have the old css in your custom theme that adds the comma, this was removed from default vb 418.

"Array" issue only occurred when using your style. All other styles I have installed including default had the birthday name and age correctly displayed. So I do not know what to do.

EB

Hmm... try re-importing the style and the reason I say that is I installed a 4.1.8 test site last night, today I imported the same style in the .zip here and look below, it works fine.

https://vborg.vbsupport.ru/external/2011/11/41.png

^ That's a completely new 4.1.8 forum, nothing changes basically I installed the Avenger Blue style right after installing the forum, old css aside there's no issues for me? What OTHER modifications do you have installed, or it might be better if I ask, what modifications on your site are not by Paul? I would start looking there and check your plugins as well. If it were truly just a css issue I would see double commas right after installing the style, as you can see in the screenshot provided that is not the case.

Tested using:

- Apache 2.2 & PHP Version 5.3.8 on Windows 7 Ultimate
- vBulletin 4.1.8


All times are GMT. The time now is 04:53 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.02034 seconds
  • Memory Usage 1,760KB
  • 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
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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