Title on Login Page

It is mentioned here: Login logo and Favicon appearing properly

But I thought I’d start a new post as it was getting buried in that one.

The Custom Title seems to work site wide, apart from on the Log In page, where it remains “InvoicePlane”. Is there a way to change this?

[size=10]Last Update: 30.01.2016[/size]

This is a pretty easy fix:

Locate the files in application/modules/sessions/views

open them and change

<title>InvoicePlane</title>

To

<title>        
    <?php
    if ($this->mdl_settings->setting('custom_title') != '') {
        echo $this->mdl_settings->setting('custom_title');
    } else {
        echo 'InvoicePlane';
    } ?>
</title>

This will set the custom title on the login screen and password reset :smile:

Cheers,
Kreekhoorn