Skip to Content
मेन्यू
This question has been flagged
2 Replies
2664 Views

Hello! Our company is currently using Odoo 15 (we hope to upgrade to 17 to utilize the Landing Pages feature). In the meantime, I would need to know how I can hide the menu, header, and footer for a single page of the website. This could be through a plugin, system configuration, or code. Thank you very much.

Avatar
Discard
Best Answer

Hay,

you can set the display to none by adding the following code in the desired page inside website layout in a script tag :


window.onload = function(){
document.getElementById('top').style.display = "none";
document.getElementById('footer').style.display = "none";
};





Avatar
Discard
Author Best Answer

Thank you very much for your reply. It worked well for us, the elements are no longer displayed when we finish loading the website.

Avatar
Discard
Related Posts Replies Views Activity
3
अप्रैल 25
2648
2
सित॰ 21
7682
0
अग॰ 23
1328
2
सित॰ 21
10315
3
दिस॰ 23
18228