The Stein Mobile Switcher detects which device (e.g. Smartphone, iPhone, Tablet) your visitor is using and enables a theme you specified.
Use the following functions to do that:
$visibility is the entry device of the visitor. Possible values are "all", "mobile", "iphone" and "tablet". E.g. if you want a link to the normal template to be visible only to smartphone users:
<?php sms_link_to_site('mobile', 'full'); ?>
You can also use OR:
<?php sms_link_to_site('mobile|tablet|iphone', 'full'); ?>
$target specifies the Target-Template. Possible values are:
$text is the displayed link text.
Example usage:
<?php
if( function_exists('sms_link_to_site') ) { sms_link_to_site("mobile|tablet|iphone", "full", "Check out the full website!"); }
?>
The links have a class equally to the functions name and target: class="sms_link_to_site_TARGET" (e.g. "sms_link_to_site_mobile"). Just style them with regular CSS.
Requires: 3.4.2 or higher
Compatible up to: 3.4.2
Last Updated: 2012-10-29
Downloads: 620
Got something to say? Need help?