hello, I just want to say thanks for a great plugin, it looks awesome on my mobile browser.
I have a quick question, is there a way to hide/remove from certain pages? I have created some pages that use the blank template, however, the bnav still shows on these pages?
is there a way to remove them.
I created a script
document.addEventListener(“DOMContentLoaded”, function() {
var navMenu = document.querySelector(‘.bnav_bottom_nav_wrapper’);
if (navMenu) {
navMenu.parentNode.removeChild(navMenu);
}
});
But that doesn’t appear to work, unless I’m trying to catch the wrong element.
Either way it would be nice to know if this can be done.
Many thanks
David.
david-9850
Participant