Xoá hoặc thay đổi nội dung “Powered by Odoo”
Các bước thực hiện:
- Truy cập vào giao diện quản lý với quyền Admin
- Bật chế độ debug với tổ hợp phím ctr + k debug
- Truy cập menu theo đường dẫn
Settings → Technical → User Interface → Views
- Tìm kiếm Brand Promotion Message. Chọn và tuỳ chỉnh
- Xoá nội dung dòng số 2 tới 8 hoặc thay thế nội dung ở dòng số 3, 4
X
Code hiện tại
<t name="Brand Promotion Message" t-name="web.brand_promotion_message">
<t t-set="odoo_logo">
<a target="_blank" t-attf-href="http://www.odoo.com?utm_source=db&utm_medium=#{_utm_medium}" class="badge text-bg-light">
<img alt="Odoo" src="/web/static/img/odoo_logo_tiny.png" width="62" height="20" style="width: auto; height: 1em; vertical-align: baseline;"/>
</a>
</t>
<t t-set="final_message">Powered by %s%s</t>
<t t-out="final_message % (odoo_logo, _message and ('- ' + _message) or '')"/>
</t>
Code tuỳ chỉnh
{brand link}
{image link}
<t name="Brand Promotion Message" t-name="web.brand_promotion_message">
<t t-set="odoo_logo">
<a target="_blank" t-attf-href="{brand link}?utm_source=db&utm_medium=#{_utm_medium}" class="badge text-bg-light">
<img alt="Odoo" src="{image link}" width="62" height="20" style="width: auto; height: 1em; vertical-align: baseline;"/>
</a>
</t>
<t t-set="final_message">Powered by %s%s</t>
<t t-out="final_message % (odoo_logo, _message and ('- ' + _message) or '')"/>
</t>
Xoá hoặc thay đổi nội dung “Copyright © Company name”
Các bước thực hiện:
- Truy cập menu theo đường dẫn
Settings → Technical → User Interface → Views - Tìm kiếm footer_copyright_company_name và tuỳ chỉnh code ở dòng số 3
Xoá hoặc thay đổi nội dung “Create a free website”
- Truy cập menu theo đường dẫn
Settings → Technical → User Interface → Views - Tìm kiếm website.brand_promotion
- Xoá hoặc tuỳ chỉnh nội dung ở dòng code 4 - 7
Code hiện tại:
<data inherit_id="web.brand_promotion" name="Brand Promotion">
<xpath expr="//t[@t-call='web.brand_promotion_message']" position="replace">
<t t-call="web.brand_promotion_message">
<t t-set="_message">
Create a <a target="_blank" href="http://www.odoo.com/app/website?utm_source=db&utm_medium=website">free website</a>
</t>
<t t-set="_utm_medium" t-valuef="website"/>
</t>
</xpath>
</data>
Code tuỳ chỉnh
<data inherit_id="web.brand_promotion" name="Brand Promotion">
<xpath expr="//t[@t-call='web.brand_promotion_message']" position="replace">
<t t-call="web.brand_promotion_message">
<!--<t t-set="_message">
Create a <a target="_blank" href="http://www.odoo.com/app/website?utm_source=db&utm_medium=website">free website</a>
</t>
<t t-set="_utm_medium" t-valuef="website"/>-->
</t>
</xpath>
</data>
Nguồn tham khảo: