Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Customize Header and Footer

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
headerFooter
3 Respuestas
6628 Vistas
Avatar
Kanan Tariq Khan

I want to build a custom header and footer for my Odoo website, completely from scratch, without using any of the default Odoo templates or building blocks. The goal is to have full control over the HTML/CSS structure and design, but also make it dynamic and manageable through the Odoo backend (like the default header/footer).


What I’m looking for:
  • The correct approach to override or replace the default header/footer.
  • How to render dynamic menus in a custom QWeb template.
  • How to structure the custom XML/HTML/SCSS files.
  • Where and how to link the custom header/footer in a theme or module.

Can anyone guide me with steps or share a working example?

0
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta

Hi,

Refer the blog:

https://www.cybrosys.com/blog/how-to-create-custom-header-and-footer-for-website-in-odoo-16


Hope it helps


0
Avatar
Descartar
Avatar
TEYSSENDIER Eble
Mejor respuesta

He is not asking for Invoices or Quotations, he wan't to modify the header of the website. I personally want to custom the cart and it is not something easy to do at all...


0
Avatar
Descartar
Avatar
Ritik (Wan Buffer Services)
Mejor respuesta

To customize the header and footer in Odoo (for reports like invoices, quotations, etc.), follow these steps:

Step-by-Step:

  1. Activate Developer Mode
    Go to Settings → Activate Developer Mode.
  2. Go to Report Templates
    Navigate to Settings → Technical → Views.
  3. Search for the template
    Look for:
    • external_layout_standard (for standard header/footer)
    • Or external_layout if you're using a customized theme
  4. Edit the XML
    Modify the header/footer section using QWeb (XML) tags.
    Example for adding a phone number in the footer:

    xml

    CopyEdit

    <t t-name="your_custom_footer"> <div>Phone: <span t-field="company.phone"/></div> </t>

  5. Save and Test
    • Go to Invoices or Quotations
    • Print a report to check changes

If you're using Studio, you can also customize headers/footers visually in Reporting → Custom Report Layouts.

Let me know if you need the XML sample for specific changes (like logo, address, or styling).

At Wan Buffer Services, we often help startups and enterprises go through this process to avoid common mistakes and get the best ERP fit — especially with solutions like Odoo.

0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Remove Powered by Odoo in Footer on Website 17 Resuelto
Footer
Avatar
Avatar
Avatar
Avatar
Avatar
6
sept 25
22016
Add a footer on a page
Footer
Avatar
Avatar
Avatar
2
abr 23
5182
"Create a free website" has to go!
Footer
Avatar
Avatar
Avatar
3
mar 23
23035
header not appear in odoo8 reports
header
Avatar
Avatar
1
mar 15
3573
"Invalid XML for View Architecture" when trying to insert a header
header
Avatar
Avatar
1
mar 15
6132
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now