How can I remove "Powered by Odoo" on odoo 8.0 (OpenERP)?

11,916

Solution 1

First go to your Odoo web module and open below file.

addons => web => views => webclient_templates.xml

Now find this tag <div class="oe_footer"> and put it comment like.

<!--div class="oe_footer">
    Powered by <a href="http://www.openerp.com" target="_blank"><span>Odoo</span></a>
</div-->

Hope this will solved your problem.

Solution 2

You can extend QWEB template to remove it, create template.xml under static/xml/ containing the following code:

<?xml version="1.0" encoding="utf-8"?>

<template xml:space="preserve">
    <t t-extend="web.menu_secondary">
        <t t-jquery="div.oe_footer" t-operation="replace"/>
    </t>
</template>

Solution 3

You can Inherit web module and apply below code.

<template id="menu_secondary_replace" inherit_id="web.menu_secondary" name="Submenu">
            <xpath expr="//div[@class='oe_footer']" position="replace">
                <div class="oe_footer">
                    Powered by <a href="your website name" target="_blank"><span>Your String</span></a>
                </div>
            </xpath>
        </template>
Share:
11,916
Ayyappadhas
Author by

Ayyappadhas

Updated on June 14, 2022

Comments

  • Ayyappadhas
    Ayyappadhas almost 2 years

    How can I remove "Powered by Odoo" on odoo 8.0 (OpenERP) ? Refer the image