Home › Forums › WooCommerce Personalized Product Options Manager (PPOM) › Images new style not working in IE11 › Reply To: Images new style not working in IE11
March 12, 2018 at 1:12 pm
#8515
Participant
Something like?
function ae_detect_ie()
{
if (isset($_SERVER['HTTP_USER_AGENT']) &&
(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
return true;
else
return false;
}