vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   VB Menus not working in Chrome (https://vborg.vbsupport.ru/showthread.php?t=236821)

ChopSuey 06-16-2010 07:38 AM

That option is available in the AdminCP Menu :p

valdet 11-21-2012 01:38 PM

Quote:

Originally Posted by Skedoozy (Post 1993791)
Hopefully this helps someone else who has this same problem.

Solution: Apparently global.php was not recognizing chrome as a browser with popup capabilities so it was disabling it.

Open global.php in an editor.

Find:
PHP Code:

$vbulletin->options['usepopups'] = 0

Replace with:
PHP Code:

$vbulletin->options['usepopups'] = 1

and all is solved.

I'm sure you could find out how to add Chrome to the if statement above this but this is a simple fix and if you have users who are using a browser without pop ups on it then they will just have to suffer!

Bumping an old post, but I recently noticed the issue with broken navbar links in Chrome and I applied a similar workaround in global.php

This small code edit basically add Google Chrome to the list of known browsers, in which popups are allowed

PHP Code:

// turn off popups if they are not available to this browser
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('chrome') OR is_browser('webkit') OR is_browser('konqueror'3.2))
    {
        
// use popups
    
}
    else
    {
        
// don't use popups
        
$vbulletin->options['usepopups'] = 0;
    }


So basically by just adding OR is_browser('chrome') did the trick of properly displaying the dropdown menus in navbar.

Hope this helps other users.


All times are GMT. The time now is 01:58 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.01028 seconds
  • Memory Usage 1,725KB
  • 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_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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