if you need to change the link from /home.php to / in bread crumbs, just modify this file:
postauth.php
- find this code:
Code:
if (!empty($lbl_site_path)) {
$location[] = array(
$lbl_site_path,
'home.php',
);
}
and change it to
Code:
if (!empty($lbl_site_path)) {
$location[] = array(
$lbl_site_path,
'./',
);
}
If you need to change the link of your web-site's logo, from /home.php to /, just modify this file:
common_files/customer/head.tpl
- find this code:
Code:
<div class="logo">
<a href="{$catalogs.customer}/home.php"><img src="{$ImagesDir}/xlogo.gif" alt="" /></a>
</div>
and change it to:
Code:
<div class="logo">
<a href="{$catalogs.customer}/"><img src="{$ImagesDir}/xlogo.gif" alt="" /></a>
</div>
For custom skins, you may also need to modify another template files in a similar way, for example:
2-columns/customer/head.tpl
artistictunes_business/customer/head.tpl
vivid_dreams_lotus/customer/head.tpl