This is the code that I am using on our site: https://www.lcoy.earth/ (See Below)
Can Anyone please help me with this issue? It’s urgent. @yisrael-wix
// The code in this file will load on every page of your site
$w.onReady(function () {
//
$w("#scrollingTransitionPoint").onViewportLeave(() => {
$w("#scrollingHeaderStrip").show();
$w("#defaultHeaderStrip").hide("fade");
})
$w("#scrollingTransitionPoint").onViewportEnter(() => {
$w("#defaultHeaderStrip").show();
$w("#scrollingHeaderStrip").hide("fade");
})
});