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

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

+3


source to share


5 answers


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

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

      

Now find this tag <div class="oe_footer">

and place it as.



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

      

Hope this solves your problem.

+7


source


You can extend the QWEB template to remove it by creating a template.xml

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

      

+2


source


You can inherit from 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>

      

+1


source


You can remove with jquery by adding this script to your finished document:

<script>
    $(document).ready(function(){
      $(".oe_footer").remove()
    }); 
</script>

      

0


source


This is what worked for me.

  • Log in as administrator and "Activate technical features", If this is not enabled, go to Settings => Users => Users => (select an administrator username. The default is "Administrator".)> "Editing"> "Usability" > "Specifications"> check the box (active), click "Save".

  • Go to Settings> Technical> User Interface> Views. In the search box next to "(filter icon)" Asset, type "Login layout" and press Enter to search. There will be one search result. (View title: Login type. View type: QWeb view.) Click to open it ...

  • Click "Change".

  • Find "web.menu_secondary" and edit it as needed.

  • Click "Save".

  • Exit and everything will change again.

Debranding Odoo backend - Archive Wayback April 2015

0


source







All Articles