跳至内容
菜单
此问题已终结
5 回复
17693 查看

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
309
0
4月 25
932
1
4月 25
1274
0
3月 25
1203
4
3月 25
9118