Quote:
Originally Posted by jpwilliams
I want the lightweight style to go to my forums by default instead of my CMS. I can't find the "adv_portal" template this user said he changed. Is there another way to get the lightweight style to default to the forum instead of CMS?
Edit: Just noticed he was using VBAdvanced CPMS.
Is there a way to get the lightweight style to default to the forums instead of the default CMS that comes with vbulletin I guess is the appropriate question.
|
You could edit the vbcms_page template and replace all with something like:
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
{vb:raw headinclude}
<title>{vb:raw vboptions.bbtitle}</title>
</head>
<body>
<div class="bodywrapping">
{vb:raw header}
{vb:raw navbar}
<div><a href="forum.php">CMS Disabled in Mobile View, please click here to proceed to forum</a>
</div>
{vb:raw footer}
</div>
</body>
</html>