Odoo 8 - how to change page title?

前端 未结 4 1067
眼角桃花
眼角桃花 2021-01-06 16:37

i was wondering how to change page titles and remove Odoo from it?

https://www.odoo.com/forum/help-1/question/change-login-page-title-34874 I tried this but i found

4条回答
  •  [愿得一人]
    2021-01-06 17:31

    I was digging on version 9 community edition you need to look at the file:

    addons/web/static/src/js/web_client.js

    Change this code:

    this.set('title_part', {"zopenerp": "Odoo"});

    With this one:

    this.set('title_part', {"zopenerp": "MyPageTitle"});

提交回复
热议问题