Problem:
This problem happens when you enable Search Engine Friendly URLs, Use Apache mod_rewrite and Add suffix to URLs options. The system adds .html after default menu link (homepage), so that we can’t return the homepage normally!
See similar topic: http://www.joomlart.com/forums/topic/return-to-home-does-not-work-problem-of-ja_t3-framework/
Fix (T3 Version 1.2.7+):
plugins/system/jat3/core/menu/base.class.php
Line 180 – 181
if ($v->home == 1) {
//$v->url = JURI::base(true).'/';
$v->url = str_replace(array($v->route.'/', $v->route), '', JRoute::_($v->url));
}
===========>
if ($v->home == 1) {
//$v->url = JURI::base(true).'/';
//$v->url = str_replace(array($v->route.'/', $v->route), '', JRoute::_($v->url));
}
Or
if ($v->home == 1) {
$v->url = JURI::base(true).'/';
//$v->url = str_replace(array($v->route.'/', $v->route), '', JRoute::_($v->url));
}