@briapril30
Has the third issue used to work before? If not, I will suggest you to open a new discussion regarding the problem or talk with our support ( https://support.wix.com/en/article/contacting-wix-customer-care-for-support ).
@rishabh-jain Yes, these sites don’t have the new version yet. As we stated we are releasing it gradually so not all sites have the new version yet.
@webbcraft thanks, we’ll verify.
Differ then few days ago, and only on live, when I set the text in a field on the footer (i.e. $w( ’ #textGroup ’ ).text =“foo” ) in one page, I see the new value of it in other pages as expected, BUT in code it returns its initial value as set in the editor, and ignore the new value set on the other page.
to recreate the issue in my site:
https://editor.wix.com/html/editor/web/renderer/edit/1c5b841a-4018-46cd-a7bf-e898d6a8f3ae?metaSiteId=14eb7614-d1cb-464b-97b6-9352b3038e50&editorSessionId=f619bef8-9598-4524-bc9e-658efe20545b
To see the issue on the main screen choose: 20826 and group 2
click enter till you get to screen with blue circles. if you look on the console you will see the log of the value of two fields in the footer which its differ then the current value on screen:
I use the value in the rest of my code - i.e. we go to session 2 (signed ב ) instead of session (signed א )
and other issues that follow.
Are you going to fix it or I need a work around?
my codes that set the value on the field is on home screen in onReady:
$w.onReady(function () {
let session = $w('#textSession').text;
///reset next session
console.log("session: " + session);
switch (session) {
case '0': ///first time here. we will show welcomes and goToSim(1, g) on "buttonSimulationA_click"
$w('#boxLogin').show();
$w('#textSession').text = '1';
setPath('park');
and the one that read it (and log the wrong values, too) is in page chair in onReady:
$w.onReady(function () {
$w('#boxExplainChair1').show();
$w('#boxTryTitle').show();
let groupType = $w('#textGroup').text;
console.log( "onready1: " + $w('#textGroup').text);//////
let session = parseInt($w('#textSession').text,10);
console.log( "onready2: " + $w('#textSession').text);//////
@webbcraft Hi. Thank you for sharing this info. I already asked our developers to check the case with console messages.
Regarding wixData.query - could you please give more information about what exactly wasn’t working for you?
Thank you in advance, Alex
Hi Nimrod, upon inspection this issue does not seem to be related to our rollout. You can create a new thread asking for assistance with your issue and/or contact support. This thread is for issues related to the rollout only.
Thanks for understanding.
@shaharn Thanks, Have you turned off the update for this site? I see the same problems on other sites.
@eugene-m Hey, if you wish you can give me the site’s url and the list of problems and I’ll check if it is update related.
@jon83405 Hi. Thank you for posting the page url. I checked it, but wasn’t able to locate the issue on mobile version of the site. If the issue is still relevant, can you please send a screenshot or a video recording of it? It would be very helpful.
Thank you. Regards, Alex
@rishabh-jain Hi. It takes time for the gradual rollout of the new viewer version to get to all of the Wix sites. We are doing our best to make it happen faster and fix all the surrounding issues along the way. Really appreciate your patience.
If the issue on your website is still relevant, can you please give more details about what exactly is not working, preferably with:
-
steps to reproduce the issue
-
url to the specific page where it happens
-
screenshot or video recording if possible
That would help immensely.
Thank you. Regards, Alex
Hi, I have a similar problem.
Storing info in session is returning null. This started last Thursday, Friday it did not occur, today it returns null again.
My site is www.segamacusers.com , The pages are https://www.segamacusers.com/movements and https://www.segamacusers.com/fleetinfo where I have a table and selecting a table row a lightbox opens with more detailed info of the line selected.
Please support, thanks in advance!
@aleksander-denga I hope the new viewer rollout is done before the festive season so that we can take the advantage. I am so excited to see top speed of my all wix site. This is the great update from wix. All the best to all of the wix team members
Hello I have an issue that fitMode “fixedWidth” not working on live site, but works on editor. On the live site it works yesterday, suddenly today it doesn’t work.
I posted the question below, also submitted a ticket earlier today ( ticket number: 774709104) . Please kindly help check.
Also not in the post above, I found that “session” is not able to bring data from one page to another. i.e. from my dynamic page button to a page called apply-online. It works on Editor but not on the live site.
Please kindly help😓
Editor link: https://editor.wix.com/html/editor/web/renderer/edit/f361e9ef-efc3-49f1-a2e4-4b426a63bb0d?editorSessionId=56DE22E6-4AB2-492A-3541-822E87A8C65A&metaSiteId=168611b3-e3cd-486c-9e5b-0b45aadb738d
Name: Mastery
Should be resolved now. Please let us know if the issue persists.
@avirambe Thanks for your help. The live site is now fixed. And seems loading faster😀
@jeffrey22 Great! ![]()
@yisrael-wix Editor link to our uat site below which has the same issue, the page name is “Sale Registration”
To get to it sign in (I’ve preset the user/password field to a uat user) → enter you sale → shows sales registration page with a test text component showing the value of the session value (null). If you delete the dataset component the “productList” the session variable shows
@laurensvandamme if it helps we found calling the getItem more than once seems to make it more stable (see example below - not ideal but it has seemed to work) also we got round the dataset component issue by removing it and interacting with the data programmatically instead
export function sessionGetItem(key) {
let output = null
for ( let i = 0 ; i < 15 ; i++) {
output = session.getItem(key);
if (output) break ;
}
return output;
}
export function sessionSetItem(key, value) {
let val = null ;
while (!val) {
session.setItem(key, value)
val = sessionGetItem(key);
// break if a null was provided, or if we got a value from the session
if (!value || val) break ;
}
}
Session storage has NOT worked and returning null values for the following days this past week: 10/26, 10/29, 11/1, and 11/2 (today). I am seeing the same results as above. This has worked solidly over the past year. I am also seeing the same result as @ithelpdesk.nz when I delete the dataset components on my page, I do get session storage data. This should not be a fix though because I need this to populate data on my page.
@aleksander-denga https://www.hawaiishome.com/listings-all/1020-Green-Street-207-Honolulu-HI-96822 Mobile version.
The strip/blank space does not collapse in the mobile version. I have code that collapses the elements “Virtual Tour, Video Tour, and Video Slideshow” if there is none in my database but it doesn’t seem to collapse the stripe/blank areas. (See first picture below) The code works in the desktop version but does not work in the mobile version since new updates.
This is how it behaves if there is data in the “Virtual Tour, Video Tour, and Video slideshow” database. This is https://www.hawaiishome.com/listings-all/129-Kaulana-Way-Honolulu-HI-96821 if you need to compare. Again, works perfectly in desktop version, but broken in mobile version.

