Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #4103158
Customizer
Closed

Comments

  • Frank started the conversation

    Customizer page is blank. I have tried everything possible and still blank. 

  •  2,878
    PenciDesign replied

    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.

  •   Frank replied privately
  •  2,878
    PenciDesign replied

    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:

    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:

    "script-src 'self' 'unsafe-inline' 'unsafe-eval'

    Regards,
    PenciDesign.

  • Frank replied

    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>