콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
6 답글
15716 화면

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

아바타
취소
베스트 답변

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

아바타
취소
베스트 답변

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 {

아바타
취소
베스트 답변

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

아바타
취소
베스트 답변

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>

아바타
취소
작성자 베스트 답변

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

아바타
취소

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!