Viewing 3 replies - 1 through 3 (of 3 total)
  • I would also like to be able to block IE9

    I also need to block IE9

    the solution is:
    on page admin-options.php:
    add this line under IE8
    <tr valign=”top”>
    <th scope=”row”><?php _e(‘Block version 9?’, ‘stop_oldies’); ?>
    </th>
    <td><input name=”so_options[ie9]” type=”checkbox” value=”1″ <?php checked(‘1’, $options[‘ie9’]); ?> /></td>
    </tr>

    In page stop-oldies.php:
    add this line under IE8
    if (array_key_exists(‘ie9’, $so_options) && $version[1] == ‘9’) {
    return true;
    }

    Thread Starter thatsgame1

    (@thatsgame1)

    Will author of plugin add to next version?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shows for IE9 As Well’ is closed to new replies.