Hi, I wanted the same so I finally used some javascript (I added this to the footer):
<script>
window.onload = function() {
if(window.innerWidth < 992) document.getElementsByTagName('body')[0].classList.add('extended-menu');
else document.getElementsByTagName('body')[0].classList.remove('extended-menu');
};
</script>
Hope it helps somebody until theme team answers with better solution
-
This reply was modified 6 years, 6 months ago by
hicks78.
After some more testing finally I’m using this code:
<script>
function nomenu(){if(window.innerWidth > 992) document.getElementsByClassName('nav-panel-toogle')[0].click();};
window.onload = setTimeout(nomenu,900);
</script>