Hướng dẫn xoá biểu ngữ "Powered by Odoo" trên website, survey trên odoo

Xoá hoặc thay đổi nội dung “Powered by Odoo”

Các bước thực hiện:

  1. Truy cập vào giao diện quản lý với quyền Admin
  2. Bật chế độ debug với tổ hợp phím ctr + k debug
  3. Truy cập menu theo đường dẫn
    Settings → Technical → User Interface → Views
  4. Tìm kiếm Brand Promotion Message. Chọn và tuỳ chỉnh
  5. 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&amp;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&amp;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:

  1. Truy cập menu theo đường dẫn
    Settings → Technical → User Interface → Views
  2. 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”

  1. Truy cập menu theo đường dẫn
    Settings → Technical → User Interface → Views
  2. Tìm kiếm website.brand_promotion
  3. 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&amp;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&amp;utm_medium=website">free website</a>
            </t>
            <t t-set="_utm_medium" t-valuef="website"/>-->
        </t>
    </xpath>
</data>

Nguồn tham khảo: