Jump to content

IE11 Issues, Quote, Copy & Paste


Administrator

Recommended Posts

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.

 

 

  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...