• Hi all, addon work like acharm but IE 11 is release and is not block.

    I have made détection working

    open output.php

    look for this line :

    // Next get the name of the useragent yes seperately and for good reason
    if (preg_match(‘/MSIE/i’,$u_agent) && !preg_match(‘/Opera/i’,$u_agent)) {
    $bname = ‘Internet Explorer’;
    $short_name = “ie”;
    $ub = “MSIE”;

    and put this after :

    } elseif (preg_match(‘/Trident/i’,$u_agent)) {
    $bname = ‘Internet Explorer’;
    $short_name = “ie”;
    $ub = “Trident”;

    http://wordpress.org/plugins/advanced-browser-check/

The topic ‘IE 11 detection issue’ is closed to new replies.