Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
6 Răspunsuri
15503 Vizualizări

Hello! I have followed several tutorials here and the internet forum in an attempt to change the browser title and also powered by Odoo, however, it still fails, the attempt to create a module produces errors. Is there any update command as well as stop and start the daemond? Sorry for the bad English

 

My version is the 8.0 installed with the following command:

git clone https://www.github.com/odoo/odoo --depth 1 --branch 8.0

Imagine profil
Abandonează
Cel mai bun răspuns

Hi Ricardo

This question has been asked quite a few times and there are a lot of solutions around.
See these links: 

As for stopping / starting your deamon there is the command line. You can start your Odoo with ./openerp-server manually or start the service. I can't tell a lot about it since I don't know the locations and names of your daemon and if you even have one.

Best of luck!
Yenthe

Imagine profil
Abandonează
Cel mai bun răspuns

Remove the “Powered by Odoo” in the  left footer :

Open the base.css file and search  for oe_footer

Add visibility: hidden; in the tag following 3 tag:

.openerp .oe_leftbar > div .oe_footer{

.openerp .oe_leftbar > div .oe_footer a{

.openerp .oe_leftbar > div .oe_footer a span {

Imagine profil
Abandonează
Cel mai bun răspuns

This module - https://apps.odoo.com/apps/modules/8.0/colors_customization/ - helps to customize user interface of Odoo 8

Imagine profil
Abandonează
Cel mai bun răspuns

hello try this it will remove  Powered by Odoo from your website footer


<template id="website.layout_footer_copyright" inherit_id="website.layout" name="Footer Copyright">

<xpath expr="//footer" position="inside">

<div class="container mt16 mb8">

<div class="pull-left text-muted">

Copyright &copy; <span t-field="res_company.name">Company name</span>

</div>

</div>

</xpath>

</template>

Imagine profil
Abandonează
Autor Cel mai bun răspuns

Thanks for your reply. Yes, there are many sources on this subject, the problem is that I am unable to put into practice, make the changes to files, however, nothing happens. The útimo that tried to follow was this:

https://www.odoo.com/forum/help-1/question/odoo-8-remove-manage-database-with-a-custom-module-65681

Imagine profil
Abandonează

No problem Ricardo. The answer you linked doesn't look to good honestly.. Try the ones I link they should work! Also, do not forget to update your modules so that Odoo picks up the changes!