This question has been flagged
3 Replies
9925 Views

how to brand odoo and change logo & color in odoo 11 or 10 

Avatar
Discard
Best Answer

Hi,

For replacing the powered by in odoo.

Try this code.

<template id="module.layout_footer" inherit_id="web.menu_secondary" name="Footer Submenu">
<xpath expr="//div[@class='o_sub_menu_footer']" position="replace">
<div class="o_sub_menu_footer">
<a href="https://www.cybrosys.com" target="_blank"><img src="/module/static/src/img/powered_by.png" width="20%"/></a>
</div>
</xpath>
</template>

For changing the whole color tone, you can use the themes suggested by Niyas.

Thank you.

Avatar
Discard
Best Answer

Hi,

There is many debranding modules available in the Odoo apps, you can check those modules for this.

v10 :

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

v11 :

https://www.odoo.com/apps/modules/11.0/odoo-debrand-11/


Thanks

Avatar
Discard
Best Answer

Hi, to delete 'Powered by Odoo', if you develop it you can directly do it in  the file webclient_templates.xml in the addons directory.

Here is the full path: addons/web/views/webclient_templates.xml

This is for V11

Avatar
Discard