Quote:
Originally Posted by KW802
I see "homeurl" is an available option but what about "hometitle" (so that the footer nav doesn't point to the 'real' hometitle in the ACP)? 
|
For those interested, the fix would be to modify your "** Load Config **" plugin and look for...
Code:
case 'bbtitle':
if($ib_in_matching_host) {
$vbulletin->options['bbtitle'] = $ib_the_spec[1];
}
break;
... and then below it add:
Code:
case 'hometitle':
if($ib_in_matching_host) {
$vbulletin->options['hometitle'] = $ib_the_spec[1];
}
break;
Seeing now the relationship between the configuration options in the ACP and how easy it is to add new ones, now I'm wondering what other little tweaks could be done.
I have to see yet what I need to do to get my vBa CMPS modules to play nice with it.