Log in

View Full Version : missing drop down menus


slehmann
07-03-2011, 02:01 AM
might be more of a google chrome problem but I installed google chrome and can't see any of the drop down menus on my site. They are still there if I use firefox, just not with google chrome.

any help?

BirdOPrey5
07-04-2011, 05:15 PM
Try other forums and see if you get the drop down box in chrome or not.

If you do it's probably a problem with your style.

In Style Manager -> Add a New Style - make sure to choose "no parent" and then browse to it and see if your drop down boxes work with it.

GavoTrav
07-04-2011, 08:45 PM
I use firefox, just not with google chrome.

any help?
No members have liked this post.
Reply With Quote

Is it your browser? Maybe chrome has an error! Try clearing the cache and temp internet files etc.. Chrome has a thing for storing stuff to try make loading pages faster and maybe its changed somehow and now wont work at all.

slehmann
07-04-2011, 09:50 PM
Try other forums and see if you get the drop down box in chrome or not.

If you do it's probably a problem with your style.

In Style Manager -> Add a New Style - make sure to choose "no parent" and then browse to it and see if your drop down boxes work with it.

gave that a try and it didn't work. still no drop downs. thanks for the suggestion though

Is it your browser? Maybe chrome has an error! Try clearing the cache and temp internet files etc.. Chrome has a thing for storing stuff to try make loading pages faster and maybe its changed somehow and now wont work at all.

I'll give it a try and see what happens, thanks.

--------------- Added 1309822933 at 1309822933 ---------------

Is it your browser? Maybe chrome has an error! Try clearing the cache and temp internet files etc.. Chrome has a thing for storing stuff to try make loading pages faster and maybe its changed somehow and now wont work at all.


that didn't work either. thanks for the suggestion

BirdOPrey5
07-04-2011, 11:30 PM
Does the drop down work on other forums?

slehmann
07-05-2011, 01:28 AM
yes, works on this forum. They are also still there if I switch back to firefox.

BirdOPrey5
07-05-2011, 02:19 AM
Can I get a link to your forum? I will test with chrome... PM me if you don't want to post it here.

slehmann
07-05-2011, 11:49 AM
<a href="http://www.fordtruckfanatics.com" target="_blank">http://www.fordtruckfanatics.com</a>

haven't had any complaints from any members yet.

BirdOPrey5
07-05-2011, 01:34 PM
I can confirm the drop-down box isn't working for me either on Chrome.

Please try disabling hooks (https://www.vbulletin.com/forum/showthread.php/196688-Disable-the-plugin-hook-system-globally) and see if you still have the problem. (All mods will be temporarily disabled when you disable hooks.)

slehmann
07-05-2011, 02:32 PM
still nothing. must be something with chrome

BirdOPrey5
07-05-2011, 02:35 PM
It's weird since I have no problem with other VB 3.x forums with Chrome, including my own.

kh99
07-05-2011, 03:57 PM
I found that vbulletin_menu.js is not being included when the page is loaded in Chrome, and I think it has to do with this code in global.php:

if ($vbulletin->options['usepopups'])
{
if ((is_browser('ie', 5) AND !is_browser('mac')) OR is_browser('mozilla') OR is_browser('firebird') OR is_browser('opera', 7) OR is_browser('webkit') OR is_browser('konqueror', 3.2))
{
// use popups
}
else
{
// don't use popups
$vbulletin->options['usepopups'] = 0;
}
}

I have version 3.8.3 which isn't the latest. Maybe the cases in the "if" don't include Chrome. But that's kind of confusing because it would mean they would never work in Chrome, but I don't think I've ever seen anyone ask about this before.

ETA: ...also Joe just said he has no problems, so maybe the code above isn't the issue. But in template headinclude there's a if $show['popups'] around the line that includes vbulletin_menu.js, so I'm assuming $show['popups'] is set to false for some reason.

More Edits: I notice that your site is using 3.6.4, maybe that version is out of date when it comes to detecting browsers.

slehmann
07-05-2011, 09:11 PM
so could I add chrome to that list and see if it works?

kh99
07-05-2011, 09:32 PM
Well, assuming that is the problem (I'm not 100% sure), then probably what you'd want to do is modify the is_broswer() function (which is in includes/functions.php). If you have access to the source code for a later version of vbulletin, you could probably copy the is_browser function from that. Even the latest from vb4.1.4 doesn't have 'chrome' as a type you can check for - I think it's reported as 'mozilla', so probably wouldn't need to change the code in global.php.

slehmann
07-07-2011, 10:59 PM
still haven't figured it out

BirdOPrey5
07-07-2011, 11:50 PM
I found another form running VB 3.6.4: http://www.pdgaming.com/

The drop down menus are also disabled for Google Chrome so I'm sure that is just how 3.6.4 was programmed- before Chrome existed, it's not recognized as a compatible browser.