Dipika
Dipika

Reputation: 115

Redux Framework Warning in wordpress Theme and Theme customization options not working

Redux Framework Warning ace-editor-js CDN unavailable. Some controls may not render properly. Please wait a few minutes, then try refreshing the page. Unable to load some remotely hosted scripts This error accoured and Theme customization options not working and not display when click on options it will display blank.

enter image description here

I am begginer in wordpress, Anyone can give the suggestions why this error occured.

Upvotes: 0

Views: 4608

Answers (2)

Legion
Legion

Reputation: 90

The above solution has nothing useful for me.

My solution was to disable the code snippet in my wp-config to restrict external url requests

define( 'WP_HTTP_BLOCK_EXTERNAL', true );
  if ( WP_HTTP_BLOCK_EXTERNAL ) {
    define( 'WP_ACCESSIBLE_HOSTS', '*.wordpress.org,*.example.com' ); 
  }

Alternatively, I could add the CDN domain used by redux into the define...

For me - it resolved my problem.

My next idea would be to check the htaccess for Order Deny,Allow....

Upvotes: 0

Dipika
Dipika

Reputation: 115

When I used Redux Framework Plugins Then All options are working.

enter image description here

I got solution from https://wordpress.org/support/topic/redux-framework-warning-cdn-unavailable

Upvotes: 1

Related Questions