Skip to content

Instantly share code, notes, and snippets.

@lambone
Created May 15, 2015 07:19
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save lambone/2d7a0418b810a4cc8694 to your computer and use it in GitHub Desktop.
Save lambone/2d7a0418b810a4cc8694 to your computer and use it in GitHub Desktop.
debrand odoo
STEP #1 – change your company logo (let’s start from easy…)
Hover the big Odoo logo on the left side, click on “Edit company data” and give your company your own logo – this will replace the Odoo placeholder logo.
STEP#2 – remove “Powered by Odoo”
Open the view web.login_layout and comment out following lines:
<!-- <span class="oe_footer_seperator"> | </span> -->
<!-- <a href="https://www.odoo.com" target="_blank">Powered by <span>Odoo</span></a> -->
Open the view web.menu_secondary and comment out following line:
<!-- Powered by <a href="http://www.openerp.com" target="_blank"><span>Odoo</span></a> -->
STEP#3 – remove “Odoo support” user for instant messaging
Goto Settings > Local Modules and uninstall module Odoo Live Support (im_odoo_support)
STEP#4 – remove Odoo announcement top bar
Empty the openerp_announcement function in addons/mail/static/src/js/announcement.js like this:
openerp_announcement = function(instance) {};
#5 remove the menu items “My Odoo.com Account” . “Help”
addons/web/static/src/xml/base.xml and comment out this line:
@jibinprabha
Copy link

can you please share me the file locattion of web.login_layout

@chris001
Copy link

There are some free modules to do this debranding:
https://apps.odoo.com/apps/modules/browse?search=debranding
This is a good one it removes branding in many places, but it's paid
https://apps.odoo.com/apps/modules/11.0/web_debranding

@gegagome
Copy link

gegagome commented Nov 20, 2018

In my case #5, which the author left incomplete, was at the bottom of the base.xml file

I commented the links I wanted like this:
`

<li><a href="#" data-menu="settings">Preferences</a></li>
<!--<li><a href="#" data-menu="account">My Odoo.com account</a></li>-->
<li><a href="#" data-menu="logout">Log out</a></li>
`

@M-itch
Copy link

M-itch commented Nov 17, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment