test
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • nguyenduchoang Friend
    #168663

    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));
    }

    jooservices Friend
    #417914

    It’s really cool, I have seen some users facing this issue. Thanks for your fix!

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  jooservices 13 years, 3 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum