You are not logged in.
Pages: 1
Hi everyone,
I'm new to this forum. I'm using GLPI 0.78 and want to change the GLPI - Authentication string on user browser title. I've edited the title GLPI - in inc\display.function.php that worked for all page except the login page, anyone experience this please help.
Thanks.
Offline
Are you talking about the very top of the browser, where is says something like "GLPI - Authentication - [browser name here]"?
If so part of it is under en_GB.php. The variable $lang['login'][10] equals 'Authentication'. The "GLPI - " bit is hard coded on index.php.
Offline
If it is hardcoded, you have just to dit the file.
But we do not do an update to delete the GLPI name of the index page.
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
Thanks for your reply, I've found the place to adjust it from "GLPI - Authentication - Browser title" to "WhatIneed - Authentication - Browser title"
Just seek for
echo '<head><title>GLPI - '.$LANG['login'][10].'</title>'."\n";
in index.php and change the GLPI to what you want!
IT's working now! thanks a lot!
Offline
Hi, and sorry for posting in such an old thread.
In GLPI 0.83.6 which file do you need to adjust to change the title of all the other pages? I've already fixed the hardcoded title in the index.php, but I don't find the file for all the other pages, there is no display.function.php file.
Offline
Hi There,
I can help you with this,
It would appear that the elusive value exists within the following file: html.class.php
On line 774 exists the
echo "\n<html><head><title>GLPI - ".$title."</title>";
Hope this helps,
Offline
I'm searching for exactly the same as davideso in GLPI version 0.80.7. I cannot find where's the "GLPI - " title for all the other pages.
As I read here, i changed in index.html but it only changed the Authentication page title.
Thanks!
Offline
Change tittle bar GLPI
html.class.php Line 1109
In GLPI 9.1
.
Offline
Hi, Make this change on inc/html.class.php line 1155 in GLPI 9.3.1. For example i've changed GLPI to HD
echo "<head><title>HD - ".$title."</title>";
Offline
Para os conterrâneos do Brasil:
Como alterar o título da aba no GLPI
Comandos para alterar o Título da aba - GLPI
Editar o arquivo "/var/www/html/glpi/inc/html.class.php" conforme abaixo:
// Start the page
echo "<!DOCTYPE html>\n";
echo "<html lang=\"{$CFG_GLPI["languages"][$_SESSION['glpilanguage']][3]}\">";
echo "<head><title> TITULO_DESEJADO - ".$title."</title>";
echo "<meta charset=\"utf-8\">";
Last edited by lesley (2019-12-11 19:44:02)
Offline
Hi ALL
Please help to change GLPI string name in browser title
That is Setup - GLPI in browser title i want to change GLPI in the Title
like Setup - (MY NAME)
I am using glpi 10.6 version so can'nt able to find common.php or html.class.php
Offline
Hi,
GLPI 10 is using twig template.
To change the default " - GLPI" string in the browser title, yo have to modify the file /templates/layout/parts/head.html.twig
Hi ALL
Please help to change GLPI string name in browser title
That is Setup - GLPI in browser title i want to change GLPI in the Title
like Setup - (MY NAME)
I am using glpi 10.6 version so can'nt able to find common.php or html.class.php
Offline
If so part of it is under en_GB.php. The variable $lang['login'][10] equals 'Authentication'. The "GLPI - " bit is hard coded on index.php.
Offline
This is the rigth answer.
Thx.
Hi,
GLPI 10 is using twig template.
To change the default " - GLPI" string in the browser title, yo have to modify the file /templates/layout/parts/head.html.twigitskaku wrote:Hi ALL
Please help to change GLPI string name in browser title
That is Setup - GLPI in browser title i want to change GLPI in the Title
like Setup - (MY NAME)
I am using glpi 10.6 version so can'nt able to find common.php or html.class.php
Offline
Pages: 1