Ir al contenido
Menú
Se marcó esta pregunta
5 Respuestas
17622 Vistas

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

Bart

Avatar
Descartar

"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"

Mejor respuesta

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

Avatar
Descartar
Mejor respuesta

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>
Avatar
Descartar
Mejor respuesta

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.

Avatar
Descartar
Mejor respuesta

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!

Avatar
Descartar
Mejor respuesta

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

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
jul 25
237
0
abr 25
892
1
abr 25
1244
0
mar 25
1169
4
mar 25
9075