// Check if the current URL contains '/web/guest' if (window.location.pathname.includes('/web/guest')) { // Remove '/web/guest' from the URL const newPath = window.location.pathname.replace('/web/guest', ''); // Update the URL without reloading the page window.history.replaceState(null, '', newPath); } $(document).ready(function () { $("#mobile-nav-search").click(function (e) { $(this).addClass("d-none"); jQuery('.search-bar-nav').removeClass('d-none'); }); });