Hello,
I am trying to fix an issue with a jquery slider I have installed on my site and was told to place this code into the header.php file.
<?php $browser = $_SERVER['HTTP_USER_AGENT'] . "\n\n";
$search = strpos( $browser, 'Win64' );
if ( $search != false && $search != 0 && $search != '' ) {
// This is for IE9 64-bit.
echo '<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/>';
} else {
// And this is for IE9 32-bit.
echo '<meta http-equiv="X-UA-Compatible" content="IE=8"/>';
} ?>
However, I do not know exactly where to put it. It says to place the code in the head tags, but after placing right before the first </head> tag, I experienced a database error on my site.
Any help is greatly appreciated.