• Resolved kennethwatt

    (@kennethwatt)


    Hi,
    I have the MobilePress plugin, and after discovering that IE6 renders my site (www.technofinger.com) awfully, I would like it to be on the list of sites to render for mobile.

    There are heaps of these blocks in the ‘pickup’ sort of page:

    // Render mobile site if Opera mini
    			case ( eregi('opera mini', $_SERVER['HTTP_USER_AGENT']) && ! mopr_convert_to_bool(mopr_get_option('iswebbrowser_operamini', 1)) );
    				$this->browser = "operam";
    				$this->activated = TRUE;
    				$this->theme = mopr_get_option('operamtheme',1);
    				break;

    and

    // Render mobile site if Windows Mobile
    			case ( eregi('Windows CE', $_SERVER['HTTP_USER_AGENT']) && ! mopr_convert_to_bool(mopr_get_option('iswebbrowser_windows',1)) );
    				$this->browser = "msce";
    				$this->activated = TRUE;
    				$this->theme = mopr_get_option('windowstheme',1);
    				break;

    What do I need to modify in the above code for IE6?

    Many thanks,
    Kenneth Watt

  • The topic ‘Code for IE6 PickUp’ is closed to new replies.