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.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- Project
- MRP
この質問にフラグが付けられました
2
返信
2673
ビュー
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";
};
Thank you very much for your reply. It worked well for us, the elements are no longer displayed when we finish loading the website.
関連投稿 | 返信 | ビュー | 活動 | |
---|---|---|---|---|
|
3
4月 25
|
2681 | ||
|
2
9月 21
|
7696 | ||
|
0
8月 23
|
1334 | ||
|
2
9月 21
|
10326 | ||
|
3
12月 23
|
18236 |