+ Reply to Thread
Results 1 to 2 of 2

Thread: main page other default language

  1. #1

    main page other default language

    I fund that code to have a default language on the main page, but still have "Eng" in the admin site.


    Default language: Go to includes > classes > rlLang.class.php > public function getLanguagesList
    after: PHP Code:
    if ($status == 'all') {
    $options = "WHERE `Status` <> 'trash'";
    } else {
    $where = array('Status' => $status);
    }
    add: PHP Code:
    if (!defined('REALM')) {
    $options = " AND `Code` <> 'en'";
    }
    Works, but than the menu for lang is disappear: See image

    language.png

    What nee to be changed in the code :-)

    Thanks for help

    Stephane

  2. #2
    Flynax developer Rudi's Avatar
    Join Date
    Dec 2014
    Location
    Planet Earth
    Posts
    3,179
    Hello,

    - Make sure the English language is not set as the default

    - Try to clear your browser cookies

+ Reply to Thread