hello
I wanted to change the appearance of the default site header in the website template.
But when I put the Odoo code in an xml page by changing the ID, I get the following error:
odoo.addons.base.models.ir_qweb.QWebException: Error while render the template
ValueError: Element '' cannot be located in parent view
Template: 776
Path: /t/t
Node:
Part of the code I ran:
xml version="1.0" encoding="utf-8"?>
id="My_template_header" inherit_id="website.layout" name="My Template Header Default" active="True">
expr="//header//nav" position="replace">
t-call="website.navbar">
t-set="_navbar_classes" t-valuef="shadow-sm"/>
id="top_menu_container" class="container justify-content-start justify-content-lg-between">
t-call="website.placeholder_header_brand">
t-set="_link_class" t-valuef="me-4"/>
Please guide me so that I can change the appearance of header through Odoo template.
Odoo is the world's easiest all-in-one management software.
 It includes hundreds of business apps:
- ลูกค้าสัมพันธ์
- e-Commerce
- ระบบบัญชี
- สินค้าคงคลัง
- PoS
- Project
- MRP
คำถามนี้ถูกตั้งค่าสถานะ
Hello, @mohammad hosein saeedian
Hope you are doing well,
For you to solve the issue of navbar you will need to do the following changes.
- First of all, you need to inherit website navbar template.
- After that you can inherit website header and call navbar template.
Please find code in comment. 
Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari
Here is a reference code:
<template id="custom_navbar" name="Navbar" inherit_id="website.navbar">
    <xpath expr="//nav" position="replace">
        <nav class="custom_navbar">
            <ul>
                <li>DEMO1
                </li>
                <li>DEMO2
                </li>
            </ul>
        </nav>
    </xpath>
</template>
<template id="My_template_header" inherit_id="website.layout" name="My Template Header Default" active="True">
    <xpath expr="//header" position="replace">
        <t t-call="website.navbar"/>
   </xpath>
</template>
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อ| Related Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
|---|---|---|---|---|
|  | 1 พ.ย. 22  | 5793 | ||
|  | 2 ก.ค. 25  | 2091 | ||
|  | 1 พ.ค. 25  | 1432 | ||
|  | 2 พ.ค. 25  | 2106 | ||
|  | 0 ก.ค. 24  | 2002 | 
