Hi everyone,
We're experiencing an issue where Wix.Settings.openMediaDialog() has suddenly stopped working in our dashboard app. The Media Manager modal simply does not appear — no error is thrown, the callback is never called. This was working fine until approximately 2 days ago with no code changes on our end.
Our setup:
- Dashboard app running inside an iframe
- IFrame SDK: https://static.parastorage.com/services/js-sdk/1.1257.0/js/wix.min.js
- React 18 app with @wix/design-system
Code that was working:
window.Wix.Settings.openMediaDialog(
window.Wix.Settings.MediaType.IMAGE,
true, // multiSelect
(result) => {
// This callback never fires anymore
console.log(result);
}
);
What we've also tried:
- Migrating to the new @wix/dashboard SDK with dashboard.openMediaManager() — this doesn't work either since our app uses the legacy IFrame SDK and the new SDK requires a different communication protocol.
- Clearing cache, different browsers — same result.
Impact: This is a production issue. Multiple users are reporting they cannot upload images through our app. This is blocking core functionality for our customers.
Questions:
- Is there a known issue or recent change on the Wix platform affecting openMediaDialog?
- Has anyone else experienced this with dashboard apps using the IFrame SDK?
- Is there a workaround or ETA for a fix?
Any help or direction would be greatly appreciated. Thanks!