如何在odoo 8.0(OpenERP)上删除“由Odoo提供支持”?
答案 0 :(得分:7)
首先转到您的Odoo网络模块并打开以下文件。
addons => web => views => webclient_templates.xml
现在找到此标记<div class="oe_footer">
并将其评为。
<!--div class="oe_footer">
Powered by <a href="http://www.openerp.com" target="_blank"><span>Odoo</span></a>
</div-->
希望这能解决你的问题。
答案 1 :(得分:2)
您可以扩展QWEB模板以将其删除,在template.xml
下创建包含以下代码的static/xml/
:
<?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 :(得分:1)
您可以继承网络模块并应用以下代码。
<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>
答案 3 :(得分:0)
您可以使用jquery删除在文档就绪中添加此脚本:
<script>
$(document).ready(function(){
$(".oe_footer").remove()
});
</script>
答案 4 :(得分:0)
这对我有用。
以管理员身份登录并“激活技术功能”, 如果没有激活,可以通过转到Settings =&gt;来完成。用户=&gt;用户=&gt; (选择您的管理员用户名。默认为管理员。)&gt;编辑&gt;可用性&gt;技术特征&gt;选中复选框(活动),单击“保存”。
转到设置&gt;技术&gt;用户界面&gt;视图。 在搜索框中,在“(过滤器图标)激活”旁边,键入“登录布局”,然后按Enter键进行搜索。 将有一个搜索结果。 (查看名称:登录布局。查看类型:QWeb视图。)单击打开它。
点击修改。
搜索“web.menu_secondary”并根据需要进行修改。
点击保存。
退出并再次进行更改。