/MagentoMobileDetect

Simple Magento mobile detect module for 1.9.2.x versions

Apache License 2.0Apache-2.0

Magento Mobile Detect

Simple Magento mobile detect module for 1.9.2.x versions

Mobile_Detect is a lightweight PHP class for detecting mobile devices (including tablets). It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment. http://mobiledetect.net

Usage

// Detect
<?php
$helper = Mage::helper('wpositive_mobiledetect/data');

if($helper->isMobile()) {
  echo "is_mobile";
}
?>