if(themeDisplay.getUserId() == '20101'){ if (!window.location.pathname.startsWith('/fr/') && !window.location.pathname.startsWith('/en/') && !window.location.pathname.startsWith('/ar/')) { // Get the current path without the leading slash // let currentPath = window.location.pathname.includes('web/guest/') ? window.location.pathname.replace('web/guest/', '') : window.location.pathname; let currentPath = window.location.pathname.substring(1); // Add 'fr' as a URL segment const newPath = '/fr/'+currentPath; // sessionStorage.setItem('guest-section', 'personal'); // Create the new URL with the 'fr' segment const newUrl = window.location.origin +''+ newPath; // Redirect to the new URL // window.location.replace(newUrl); } // else if(window.location.pathname.includes('web/guest/')){ // // Get the current path without 'web/guest/' // let currentPath = window.location.pathname.replace('web/guest/', ''); // // Include the query parameters // let searchParams = window.location.search; // // Use history.pushState() to change the URL without reloading the page // history.pushState({}, '', currentPath + searchParams); // } if(window.location.pathname.includes('particuliers')){ localStorage.setItem('guest-section', 'personal'); } else if(window.location.pathname.includes('entreprises')){ localStorage.setItem('guest-section', 'business'); } }