Quote:
Originally Posted by kh99
I really don't remember, it's been a while since I did anything with vba. But I seem to remember that the installation instructions involved replacing or editing index.php, so maybe that had something to do with it. Come to think of it, I've only used vbadvanced with vb3 so it might be different with vb4.
I suppose you could edit the template to change the title to whatever you wanted. I believe it's adv_portal, under the vba CMPS group of templates.
|
Here is the adv_portal template. Can you point out what to edit here?
HTML Code:
{vb:stylevar htmldoctype}
<html dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" xmlns="http://www.w3.org/1999/xhtml">
<head>
{vb:raw headinclude}
<vb:if condition="$pages['name'] == 'home'">
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
</vb:if>
<title>{vb:raw vboptions.hometitle} <vb:if condition="$pagetitle">- {vb:raw pagetitle}</vb:if></title>
{vb:raw headinclude_bottom}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<vb:if condition="$show['customizepagelink']">
<div style="float: {vb:stylevar right}; padding-bottom: {vb:stylevar padding}">
<vb:if condition="$show['customizepage']">
[<a href="javascript: reset_cmps_layout({vb:raw pages.pageid})">{vb:rawphrase reset_layout}</a>]
[<a href="{vb:raw show.customizepagelink}">{vb:rawphrase exit_customization_mode}</a>]
<vb:else />
[<a href="{vb:raw show.customizepagelink}">{vb:rawphrase customize_this_page}</a>]
</vb:if>
</div>
</vb:if>
<table align="center" cellspacing="0" cellpadding="0" width="100%">
<tr valign="top">
<vb:if condition="$show['left_column']">
<td width="{vb:raw vba_style.portal_leftcolwidth}"<vb:if condition="$show['center_column'] OR $show['right_column']"> style="padding-{vb:stylevar right}: {vb:raw vba_style.portal_colspacing}px"</vb:if>>
{vb:raw home.leftblocks}
</td>
</vb:if>
<vb:if condition="$show['center_column']">
<td valign="top">
{vb:raw home.centerblocks}
</td>
</vb:if>
<vb:if condition="$show['right_column']">
<td valign="top" width="{vb:raw vba_style.portal_rightcolwidth}"<vb:if condition="$show['center_column'] OR $show['left_column']"> style="padding-{vb:stylevar left}: {vb:raw vba_style.portal_colspacing}px"</vb:if>>
{vb:raw home.rightblocks}
</td>
</vb:if>
</tr>
</table>
{vb:raw footer}
</body>
</html>