untested, but you can try editing the
Mobile Device Thread Footer and
Mobile Device Post Footer plugins and change
Code:
if (($styleid==$vbulletin->options['mo37_mobile_style']) && ($vbulletin->options['mo37_post_text'] != '')){
if ($vbulletin->options['mo37_post_text']=="UA") $vbulletin->options['mo37_post_text'] = $_SERVER['HTTP_USER_AGENT'];
$vbulletin->GPC['message'] = $vbulletin->GPC['message'] . "\n". "[size=1][i]" . $vbulletin->options['mo37_post_text']. "[/i][/size]" . "\n";
}
to
Code:
if (($styleid==$vbulletin->options['mo37_mobile_style']) && ($vbulletin->options['mo37_post_text'] != '')){
if ($vbulletin->options['mo37_post_text']=="UA") $vbulletin->options['mo37_post_text'] = $_SERVER['HTTP_USER_AGENT'];
$vbulletin->GPC['message'] ="[size=1][i]" . $vbulletin->options['mo37_post_text']. "[/i][/size]" . "\n\n" . $vbulletin->GPC['message'] ;
}