Administrator Posted November 13, 2013 Posted November 13, 2013 If you are seeing issues with quoting, copy & paste with win 8.1 and IE 11, here is a work around for this on version 3.4.6 Edit the global template in your skin, Replace the following code <meta http-equiv="X-UA-Compatible" content="IE=edge" /> With this code below <php> $ie11fix = "edge"; if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7') !== false)) $ie11fix = "EmulateIE10";</php><meta http-equiv="X-UA-Compatible" content="IE={$ie11fix}" /> Then save, clear your browser cache, and you should be set. 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now