*Good day my Bosses in the house,
I want to customize the dolibarr so I want to add some tables in the “New Order” and List order….
So I want to know which folder I am going to be dig in to, also the directory path.
Also I want to know which folder I I’ll find file for the login page where “dolibar version” is written .
Thanks in anticipation.
ksar
July 8, 2022, 10:09am
2
Hello,
If you want to add tables on dolibarr pages, you need to write a custom module : Module development - Dolibarr ERP CRM Wiki
Especially The tab management
For the dolibarr version : Rename Title bar
Thanks for your quick response, I really appreciate. It seems the “Rename Title Bar” option has been removed in the latest version…I am currently using 15.0.02 the “MAIN_APPLICATION_TITTLE” does not exist . Please is there a way around this? Thanks A lot.
ksar
July 8, 2022, 12:18pm
4
Hello,
Constant exist in all versions :
print '<meta name="theme-color" content="rgb('.$conf->global->THEME_ELDY_TOPMENU_BACK1.')">'."\n";
}
// Auto refresh page
if (GETPOST('autorefresh', 'int') > 0) {
print '<meta http-equiv="refresh" content="'.GETPOST('autorefresh', 'int').'">';
}
// Displays title
$appli = constant('DOL_APPLICATION_TITLE');
if (!empty($conf->global->MAIN_APPLICATION_TITLE)) {
$appli = $conf->global->MAIN_APPLICATION_TITLE;
}
print '<title>';
$titletoshow = '';
if ($title && !empty($conf->global->MAIN_HTML_TITLE) && preg_match('/noapp/', $conf->global->MAIN_HTML_TITLE)) {
$titletoshow = dol_htmlentities($title);
} elseif ($title) {
$titletoshow = dol_htmlentities($appli.' - '.$title);
} else {
Thanks so much, I have tried to implement this but not still showing up on the “Tittle Bar” . Can you shed more light please.