It's because there are no templates for the article forum on the mobile style. The mod was created before the mobile style even came with 4.x.
I made a plugin that disables the mod on the mobile style so the content is visible like normal threads and posts.
The only other option is creating custom mobile templates.
the plugin code I wrote was:
Code:
global $vbulletin;
$vbo = &$vbulletin->options;
$vbu = &$vbulletin->userinfo;
if (THIS_SCRIPT == 'articles' AND $vbu['styleid'] == 2)
{
//Redirect to forumdisplay id 4
$newurl = 'forumdisplay.php?f=4';
header( 'Location: ' . $newurl ) ;
}
hook: globala_bootstrap_init_start
the 2 is the styleid of the mobile style and the 4 is the forumid that was the Articles forum.