I want to hide the footer (not header and footer) on one page only, the only way I’ve been able to do it is with
$w.onReady( **function** () {
$w("#footer1").children.forEach((item, i) => {
item.collapse();
});
});
The problem is that when you navigate to another page it stays hidden (and I haven’t been able to detect the page change to show it again).
Surely such a simple thing should be possible.