We've just installed this Add-On at our board, but some users prefer to choose the original style. Using a simple cookie this could be a usefull extension.
Just change the beginning of the Plugin at style_fetch Hook like this to check for an cookie:
PHP Code:
$noMobile = $_COOKIE['bbNoMobile'];
if ($vbulletin->options['mob_detect_enabled'] == 1 && $noMobile != 1) {
...
}
Then you have to provide a possibility to set the cookie:
PHP Code:
<?php
setcookie('bbNoMobile', '1', time()+3600*24*30, '/', '%your_bb_url%');
if (strpos($HTTP['HTTP_REFERER'], '%your_bb_url%')) {
header("Location: ".$HTTP['HTTP_REFERER']);
} else {
header("Location: http://%your_bb_url%/");
}
?>
Save this to a file called e.g. switch.php and replace %your_bb_url% with your board hostname. Now you only have to provide a link to switch.php.
Perhaps it is possible to include this feature and integrate the switch.php code as plugin into vBulletin. Unfortunately I'm not very skilled in vB Plugin development.