Plugin Support
Rica
(@ricav)
Hi @pulakchakraborty2256,
Thank you for reaching out. To help me troubleshoot, could you let me know where the JSON file originated and share a screen recording of your workflow—from exporting it on the source site to importing it on the destination site or page?
I look forward to your reply.
Kind regards,
Plugin Support
Milos
(@miloss84)
Hi there,
Thank you for sharing your video.
If importing a JSON file (like an Elementor template or page) results in a blank page after import, and you’ve already ruled out server issues and plugin conflicts, here are the most common causes and how to troubleshoot them:
1. Corrupted or Incompatible JSON File
- Symptom: Page imports but nothing displays.
- Fix:
- Open the
.json file in a code editor (e.g. VS Code or Notepad++) and check if it contains valid JSON data. It should start with something like: jsonCopyEdit{ "version": "0.4", "title": "My Template", "type": "page", ... }
- Make sure it’s an Elementor-compatible export. Elementor files are not interchangeable with other plugins or builders.
2. Mismatch Between Elementor Versions
- Symptom: File looks valid but doesn’t render.
- Fix: Make sure you are using the same or newer version of Elementor as the one used to export the file.
3. PHP Memory or Execution Limits
- Symptom: Large templates silently fail to load.
- Fix: In
php.ini or .htaccess, increase limits: iniCopyEditmemory_limit = 512M max_execution_time = 300 post_max_size = 128M upload_max_filesize = 128M Then restart the server or contact hosting support to apply changes.
4. Browser Console Errors
- Symptom: Visual editor is blank, but backend looks OK.
- Fix: Open Developer Tools (
F12), go to the Console tab, and check for red error messages (e.g., JS or CORS errors). These can point to:
- Missing Elementor assets
- JS crashes during rendering
5. Theme Conflicts
- Some themes may not fully support Elementor templates or may override layout rendering.
- Fix: Switch to a basic theme (e.g., Hello Elementor) and reimport.
6. Template Structure Issue
- Symptom: Imports, but content is deeply nested or hidden.
- Fix:
- Check in the Navigator panel if there’s any content there.
- Sometimes everything is inside a single container with 0 padding/margin and hidden overflow.
Would you like me to check your .json file if you upload it here? I can analyze its structure for issues.