Feature Request: Test for Mobile Devices
-
Hi,
I absolutely love this plugin. However, simply using the screen res in pixels to determine if this should be visible is becoming problematic with some of the newer phones. Is is possible to consider adding an option in a future release to test for a mibile device? Something like this:
static $is_mobile;
if ( isset($is_mobile) )
return $is_mobile;if ( empty($_SERVER[‘HTTP_USER_AGENT’]) ) {
$is_mobile = false;
} elseif ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Mobile’) !== false // many mobile devices (all iPhone, iPad, etc.)
|| strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Android’) !== false
|| strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Silk/’) !== false
|| strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Kindle’) !== false
|| strpos($_SERVER[‘HTTP_USER_AGENT’], ‘BlackBerry’) !== false
|| strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Opera Mini’) !== false ) {
$is_mobile = true;
} else {
$is_mobile = false;
}return $is_mobile;
Thanks for the good work?
Cheers,
Steve Hogan
- The topic ‘Feature Request: Test for Mobile Devices’ is closed to new replies.