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

How to remove "Powered by Odoo" in email in the Enterprise version. Is a specific module or app required?

Bart

아바타
취소

"for that you have find email template in settings and either do direct modification in it or inherit through xpath you can remove
or
purchase https://apps.odoo.com/apps/modules/16.0/odoo-debrand-11/ app"

베스트 답변

Hi Bart,
Only need to change in the email templates, then go to the email templates in settings and remove the labels of odoo.

OR

You can use some modules for debranding.
There some debranding modules:
Like : https://www.odoo.com/apps/modules/12.0/odoo-debrand-11/ 

https://www.odoo.com/apps/modules/12.0/odoo-debrand/

You can serch more modules are available. 

then you can remove all the odoo marks,

Regards,

Nikhil krishnan

아바타
취소
베스트 답변

In Odoo 18,

In your custom module add below code, make sure in __manifest__.py file in depends 'mail' should be there
for e.g.  'depends': ['base', 'account', 'web', 'mail'],

​<?xml version="1.0" ?>
<odoo>
​<template id="mail_notification_layout_custom" inherit_id="mail.mail_notification_layout">
​<!-- Force show_footer to false -->
​<xpath expr="//t[@t-set='show_footer']" position="replace">
​<t t-set="show_footer" t-value="False"/>
​</xpath>
​</template>
</odoo>
아바타
취소
베스트 답변

Stumbled upon the same issue. Looking in the source, the best way seems to be a module, that removes the part from the hardcoded templates. 

I also found the string in many translation files, maybe that's another option to get rid of it.

아바타
취소
베스트 답변

Nickhil, you say that we just need to edit the templates, but, that is as a matter of facts not true.

I customised template, and it lets you only customise the "inner" text of a template, not the actual template.

It still comes in a totally ugly "white/grey" box and has a footer "powered by odoo"


The modules you suggest, are one 404, and the other not tested on enterprise, further requiring odoo 11


What do we miss?

Thanks!

아바타
취소
베스트 답변

Hi,

What you need to do is, enable debug mode from settings, then go to technical -> email templates.
From there select the template you want to edit and remove the code segment that has powered by Odoo.


Hope it helps

아바타
취소
관련 게시물 답글 화면 활동
1
7월 25
378
0
4월 25
955
1
4월 25
1302
0
3월 25
1238
4
3월 25
9142