Quote:
Originally Posted by BirdOPrey5
I've been told by another forum member that simply adding this to the headinclude template will let the WYSIWYG editor work fine by telling IE10 to display as IE9.
Code:
<meta http-equiv="X-UA-Compatible" content="IE=9" />
I don't have immediate access to IE10 to test it, but if anyone wants to test, uninstall or disable this mod first.
|
Yes, that will work, but if you use Async Ads -the will not Render, thus losing revenue.
update: Trident must be updated to 7.0 rather than 6.0 to work
Code:
//This plugin checks if the user is using Edge, if he or she is, it forces use of the standard editor
global $vbulletin;
{
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0'))
$vbulletin->userinfo['showvbcode'] = 1; //This is the standard editor
}