Quote:
Originally Posted by Skedoozy
I GOT IT WORKING!
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!
|
Thank you very much for your solution