i know how much i love when google indexes questions with no solutions...
I was able to solve this using a hidden profile field. It seems to work...
At the end of the plug in (global_start) i set it.
Code:
*** snip ***
if ($mobile_browser_advanced||$mobile_browser)
{
{
$mobilemt="yes";
}
}
$vbulletin->userinfo['field15'] = $mobilemt;
Then to do an IF Condition in a template I just...
Code:
<vb:if condition="$bbuserinfo[field15] == 'no'">
.....
</vb:if>
I didn't really want to use a profile field but it does seem to work.
If anyone has any better suggestions, i'm open.