跳至內容
選單
此問題已被標幟
5 回覆
17632 瀏覽次數

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
244
0
4月 25
896
1
4月 25
1248
0
3月 25
1175
4
3月 25
9086