dryabov wrote:
It's better to have full webpages on some mobile devices that mobile webpages on some desktop browsers.
I totally agree. We decided to add the "Mobile Version | Standard Version" links at the bottom of the full site so folks who land on the full site on their phone still have the ability to manually force the Mobile version if they choose to do so (and if they notice the link at the bottom).
We also played with a patch in simple.php to try and catch some Useragents (lost due to not having TeraWURFL) which we can be almost sure are mobile users:
/plugins/mobile/simple.php line 48:
if(preg_match('~Windows CE|Opera Mini|Opera Mobi|Mobile|Symbian|PalmOS~i', $useragent, $match))
{
$MobileJoomla_Device['markup'] = 'xhtml';
return;
}
Though I assume that getting mySQLi installed and TeraWURFL enabled is a better solution than this ugly patch (and I wouldn't suggest others use this patch).