Ive seen others in the forum experience this, but no solutions. Since a day all my pages that feature the same (copied over) portfolio gallery has problems. The images don't load at all, or parts of the gallery doesn't load. It's random which pictures that do not load. In SS editor, it all loads perfectly (and before yesterday it all works fine for a year) - But not online
Well, good luck. What I just did was to delete all the galleries and I just did a new page which was a gallery, saved that as a saved section, and readded that section wherever the gallery should be placed. Works now. No idea why it stopped working before.
Same issue here (Flatiron template) with grid design, and stacked design has also distorted images in some pages... I tried on Chrome and Safari, no clue what's going on. I will try to delete and recreate galleries, as Johnny98 mentioned.
To those who were told by SSCS on Friday that there was no problem, they knew from me Thursday night that I have thousands of galleries impacted. 8 yrs x 3 minimum a day x 365. That's 8760 minimum in the stack widget. We've now been doing them manually by individual image, but our productivity is out the window. My issue is the loss of proportionality, as others have experienced.
I feel better now knowing I'm not alone. We're on Five template, but I assume the widget is essentially the same across templates. All I know is the issue was escalated, per their commentary, but I've not heard a word from the tech staff. They are usually very responsive once you get entry CS to take you seriously and send you on to them.
Now THAT is a wall very difficult to penetrate. I've been on Squarespace since 2007, and the standard answer for everything is "it's probably your browser." You gain no credibility for working with the system for over 15 years. They tell you it's your browser. Even when you've validating it on multiple browsers, they suggest you do it again. LOL
I said "If you tell me this is a browser problem, I am going to scream so loudly, you will hear me wherever you are." If I hear anything, I will report back. They were working today, and I've never seen them take the system down for five minutes on the weekend. They must have done it over the years, but I was hoping the fix was coming this morning. It was so rare.
Squarespace are also dealing with a bug that cannot affect images on Squarespace sites. Their Engineering teams are prioritising a fix for this now but, if you are still experiencing an issue, I recommend contacting Customer Support as they can use tools to resolve issues like this on the backend. For this reason, they can probably provide more help that we can.
Same for me, site was working ok until last week now the first image in a gallery doesnt load and if a ctrl f5 is done, no images load. CS fobbed me off saying my images were too big (1MB) which is well within the 20MB limit and has worked fine until last week, when it broke with no changes being done at the time.
Example: - the first image (boats) doesnt load although is clickable and then opens in the lightbox. When an image doesnt load it has
Update. Clearing the cache didnt work but strangely a hard reload did but then subsequent views still showed the error. I seem to have solved the problem though by making a small change on the effected page and saving (I changed the title then changed it back), this seems to have forced the cache to be reloaded and the problem is solved.
I have the same problem. Squarespace support suggested to disable ajax loading. It helped on desktop browsers but on mobile the problem is still present. Squarespace support said they are working on it but do not have an ETA when it will be fixed. I hope no ETA doesn't mean "not any time soon".
Still having this problem on my website on mobile on any pages that have galleries. Been going on for several months now and is really a problem,. Basically on any pages the have galleries, the first one on the page loads, and a few of the older ones at the bottom of the page load, but the majority on the page only the thumbnails load, but the main image doesn't
@johnhalldesign are you still experiencing this issue? What version of Squarespace is your site on? I have a client on a 7.0 site that's experiencing image loading issues and found this thread. Curious if there's a fix before I reach out to support. Seems to happen on Safari and Chrome browser on iOS so far, thought it was related to network connectivity, but seems it happens on LTE or wifi on mobile. Not sure about android as yet.
Support has told me so far to try the usual tricks, clearing cache, updating iOS etc, but nothing works so far. The tech showed a video of them browsing the galleries but couldn't recreate the problem on their end which makes this harder to diagnose, but both my client and myself are seeing the same issue.
Just came across this issue while building a new website using Thumbnail galleries - Chrome was just not loading in some images but they would show on the thumbnail row. I fixed it by simply unticking the auto crop option in the gallery settings. Not ideal as the images are now not full size to the grid, but at least it doesn't look 'broken'.
I just experienced this, where removing auto crop would show my gallery images, but the image size is not at the ideal as you pointed. Does someone know if there a way to bypass the "auto crop issue" that causes images to disappear?
The special file loading.js helps you create meaningful Loading UI with React Suspense. With this convention, you can show an instant loading state from the server while the content of a route segment loads. The new content is automatically swapped in once rendering is complete.
An instant loading state is fallback UI that is shown immediately upon navigation. You can pre-render loading indicators such as skeletons and spinners, or a small but meaningful part of future screens such as a cover photo, title, etc. This helps users understand the app is responding and provides a better user experience.
These steps are sequential and blocking, meaning the server can only render the HTML for a page once all the data has been fetched. And, on the client, React can only hydrate the UI once the code for all components in the page has been downloaded.
Streaming works well with React's component model because each component can be considered a chunk. Components that have higher priority (e.g. product information) or that don't rely on data can be sent first (e.g. layout), and React can start hydration earlier. Components that have lower priority (e.g. reviews, related products) can be sent in the same server request after their data has been fetched.
Streaming is particularly beneficial when you want to prevent long data requests from blocking the page from rendering as it can reduce the Time To First Byte (TTFB) and First Contentful Paint (FCP). It also helps improve Time to Interactive (TTI), especially on slower devices.
works by wrapping a component that performs an asynchronous action (e.g. fetch data), showing fallback UI (e.g. skeleton, spinner) while it's happening, and then swapping in your component once the action completes.
The server can still communicate errors or issues to the client within the streamed content itself, for example, when using redirect or notFound. Since the response headers have already been sent to the client, the status code of the response cannot be updated. This does not affect SEO.
Hope you all are doing well. Im not sure in which category to post this, so i will just leave it here. So ive had a problem all day where dashboard isnt loading. I just paid my freelancer plan, but its still the same. Here is a screenshot:
image1916997 37.7 KB
Hey everyone. So, my 3D Warehouse just keeps loading and does not go to the main page, I really dont know what is wrong. I have tried to clean my internet cache, restarted everything, but nothing seems to work and I really dont want to reinstall. Does someone know what is causing this?
Each version of SketchUp provides access to 3D Warehouse. The system requirements for 3D Warehouse are the same as the version of SketchUp you are using. Use these links to see the system requirements for each flavor of SketchUp:
An overlay that can be used to indicate activity while blocking user interaction. The loading indicator appears on top of the app's content, and can be dismissed by the app to resume user interaction with the app. It includes an optional backdrop, which can be disabled by setting showBackdrop: false upon creation.
Once presented, the loading indicator will display indefinitely by default. Developers can manually dismiss the loading indicator after creation by calling the dismiss() method on the component. The onDidDismiss function can be called to perform an action after the loading indicator is dismissed.
Alternatively, developers can configure the loading indicator to dismiss automatically after a specific amount of time by passing the number of milliseconds to display it in the duration of the loading options.
Loading uses scoped encapsulation, which means it will automatically scope its CSS by appending each of the styles with an additional class at runtime. Overriding scoped selectors in CSS requires a higher specificity selector.
If the message property is defined for Loading, then the aria-labelledby attribute will be automatically set to the message element's ID. Otherwise, aria-labelledby will not be set, and developers must provide an aria-label using the htmlAttributes property.
After logging in, there is just a loading wheel spinning forever. All my previous conversations are gone too! Please fix this I cant even use chatgpt anywhere in my laptop and on my phone as well. This has never happened before! I have used Chatgpt for so long! Please fix this. Many people are having this problem.
image11702532 114 KB
3a8082e126