I've checked your site, and the issue seems to be related to your server configuration.
Most of the JS files aren't loading properly because your server's CSP (Content Security Policy) header includes:
script-src 'self' 'unsafe-inline';
However, it's missing 'unsafe-eval', which is required if a script—likely in the admin backend—is trying to use eval() or similar dynamic code functions.
I recommend contacting your hosting provider and asking them to help you configure or modify the CSP header like this:
Customizer page is blank. I have tried everything possible and still blank.
Hi,
For this case, please send me your WordPress admin account in a PRIVATE reply.
I'll log in and try to help you check this problem.
Regards,
PenciDesign.
Hi,
I've checked your site, and the issue seems to be related to your server configuration.
Most of the JS files aren't loading properly because your server's CSP (Content Security Policy) header includes:
However, it's missing 'unsafe-eval', which is required if a script—likely in the admin backend—is trying to use eval() or similar dynamic code functions.
I recommend contacting your hosting provider and asking them to help you configure or modify the CSP header like this:
Regards,
PenciDesign.
Resolved. Missing Customizer page. Add this to the .htaccess:
<IfModule mod_headers.c>
Header set Content-Security-Policy "script-src 'self' 'unsafe-inline' 'unsafe-eval';"
</IfModule>