in this bburl's are replaced by homeurls and so do let me know your bburls/homeurls.
if you would like that to be changed
Edit the
archive_complete plugin
With the following
Code:
$searchArray=array(
'<a href="' . $vbulletin->options['homeurl'] . '/archive/index.php">' . $vbulletin->options['bbtitle'] . '</a>',
$vbulletin->options['homeurl'] . '/archive/index.php',
"<a href=\"" . $vbulletin->options['home'] . '/' . $vbulletin->options['forumhome'] . '.php">' . $vbulletin->options['bbtitle'] . "</a>"
);
$replaceArray=array(
'<a href="' . $vbulletin->options['bburl'] . 'sitemap/">' . $vbulletin->options['bbtitle'] . ' Sitemap</a>',
$vbulletin->options['bburl'] . 'sitemap',
"<a href=\"" . $vbulletin->options['bburl'] . '">' . $vbulletin->options['hometitle'] . "</a>"
);
$output = str_replace($searchArray, $replaceArray,$output);