Troubleshooting Guide
encountering issues with VisioLayer? This guide provides quick solutions to common problems.
General Issues
Problem: Plugin Menu Not Visible
Solution:
- Verify the plugin is active in Plugins > Installed Plugins.
- Check your User Role capabilities. By default, only Administrators have access to VisioLayer.
- Disable other plugins temporarily to check for menu conflicts.
Problem: "Update Failed" or "Package Not Found"
Solution:
- Go to Dashboard > Updates and click Check Again.
- Ensure your license is active in VisioLayer > License.
- If using a paid add-on, ensure the main VisioLayer Pro core is also updated.
Slider Visibility
Problem: Slider Not Showing on Frontend
Solution:
- Check Shortcode: Ensure you are using the correct alias:
[visiolayer alias="your-alias"]. - JS Errors: Open your browser console (F12) and check for red JavaScript errors.
- z-index Issue: Code in your theme might be hiding the slider. Try adding this CSS to VisioLayer > Global Settings > Custom CSS:
rs-module-wrap { z-index: 1; }
Problem: Slider Loads but is distorted/broken
Solution:
- jQuery Conflict: Ensure your theme is loading standard WordPress jQuery.
- Async/Defer Scripts: If you use an optimization plugin (like WP Rocket or Autoptimize), exclude
jquery.jsandrbtools.min.jsfrom "Defer JS" or "Delay JS execution".
License & Activation
Problem: "Invalid Purchase Code"
Solution:
- Double-check for spaces before/after the key.
- Ensure you copied the License Key (starts with
VL-) and not the Purchase ID or Receipt Number.
Problem: "Connection to Server Failed"
Solution:
- Ask your hosting provider to verify that
cURLis enabled. - Whitelist our API server:
https://api.visiolayer.com. - Check if a security plugin (e.g., Wordfence) is blocking outgoing connections.
Conflicts & Compatibility
Problem: Editor is Blank or White Screen
Solution:
- Memory Limit: Increase your PHP memory limit. Add this to
wp-config.php:define( 'WP_MEMORY_LIMIT', '256M' ); - Plugin Conflict: Deactivate all other plugins except VisioLayer. If the editor loads, reactivate plugins one by one to find the culprit.
Problem: Animations are choppy or freezing
Solution:
- Reduce Complexity: High-resolution videos + many layers + complex 3D transitions can overwhelm older browsers.
- Global Settings: Go to VisioLayer > Global Settings and set "Insert Scripts in Footer" to On.
Cache & CDN
Problem: Changes not appearing after Save
Solution:
- VisioLayer Internal Cache: Go to VisioLayer > Global Settings and click "Clear Internal Cache".
- Browser Cache: Hard refresh your browser (Cmd+Shift+R or Ctrl+F5).
- Server/Plugin Cache: Clear caches in plugins like WP Rocket, W3 Total Cache, or your hosting control panel (varnish/nginx).
- CDN: If using Cloudflare, purge the cache for the page URL.
Advanced Debugging
Enable Debug Mode
If you are still stuck, enable WordPress debugging to see specific errors.
- Open your
wp-config.phpfile via FTP/File Manager. - Add or change the following lines:
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false ); - Reproduce the error.
- Check the file
wp-content/debug.logfor error messages and send them to our support team.