You could try creating a new plgin on
style_fetch called "Disable Hacks for Mobile Style", execution order 6 with the following code:
Code:
if (STYLEID==xx){
$vbulletin->options['afm_onoff']=0;
$vbulletin->options['ap_album_comments_onoff']=0;
}
@Roxie - same as above - the following may work for disabling MGC Chatbox
Code:
if (STYLEID==xx){
$vbulletin->options['mgc_cb_evo_active']=0;
}
Where
xx is the styleid number of your mobile style
let me know if this helps...