Archived topic
Slideout Menu
1 reply · Started by mzsstade on July 29, 2020
Viewing posts 1–2 of 2
Hi,
i want to show the Off-Canvas Menü on usesr first Page visit. How can I set the menu to „open", so that users have to close it?
Hi there,
try adding this Javascript to your site:
window.onload = function() {
if ( document.referrer == null || document.referrer.indexOf(window.location.hostname) < 0 ) {
document.querySelector('.slideout-toggle a').click();
}
};
This archived topic is closed to new replies.