PDA

View Full Version : Forum Name rather than Homepage Name


iKwak
06-09-2004, 03:33 AM
I realized that the title of the pages are based on the "Homepage Name" under Admincp rather than "Forum Name."

How can we have our title based on the Forum Name. Thank you.

mholtum
06-09-2004, 03:35 AM
I realized that the title of the pages are based on the "Homepage Name" under Admincp rather than "Forum Name."

How can we have our title based on the Forum Name. Thank you.Instead of entering the Homepage Name enter the Forum Name... It should would... Never thought about it.

Our Sponsors
 

iKwak
06-09-2004, 01:25 PM
I like to keep the Homepage and Forum Home name different in the admincp for a reason.
But would like to know if there is another way to make CMPS use the Forum Name rather than using the Homepage name.

Brian
06-09-2004, 02:06 PM
Open your includes/vba_cmps_include_bottom.php file and look for:


'\'misc.php',
$vboptions['bbtitle'],
'"' . $vboptions['forumhome'] . '.php'


Replace that with:


'\'misc.php'


Then find:


'\'' . $vboptions['bburl'] . '/misc.php',
$vboptions['hometitle'],
'"' . $vboptions['homeurl']


Replace that with:


'\'' . $vboptions['bburl'] . '/misc.php'

Our Sponsors
 

iKwak
06-09-2004, 02:21 PM
Thanks for all the replies.