How do I edit link for Home in breadcrumb menu?

Hi all,

I know it's in BxBaseMenu.php

 

function genBreadcrumb($aPath = array()) {
$sRootItem = '<a href="' . $this->sSiteUrl . '">' . _t('_Home') . '</a>';

 

Now home goes to http://www.mysite.com

I have a splash page so I want Home to go to http://www.mysite.com/index.php

Anyone have a solution?

Regards,

Harvliet

Quote · 12 Sep 2010

If that is the correct fuction, which i have not verified, you just add index.php to it like so.

function genBreadcrumb($aPath = array()) {
$sRootItem = '<a href="' . $this->sSiteUrl . 'index.php">' . _t('_Home') . '</a>';

https://www.deanbassett.com
Quote · 12 Sep 2010

Thanks deano92964. That worked.

Quote · 12 Sep 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.