Do your WordPress admin styles are not responding?

Do your WordPress admin styles are not responding?

Often users would note a problem that WordPress admin styles are not loading. It will be your unexpected error happens without warning. Backup reason might be due to the new version update of WordPress. None will help you at this time! Even if you try to reinstall it again no use of fixing this problem!

wordpress.png


Here’s a quick fix: Try making changes on the below mentioned code into the URL wp-admin/load-styles.php

Change this line :
Code:
error_reporting(0);
into

Code:
error_reporting( E_ALL | E_STRICT );
That’s it! Try to refresh the WordPress admin panel again and again. Once it works your styles will work automatically without any problem like before.

Don’t leave the code as it is bring back the original code to your WordPress again.

You can even try by using some below following codes into wp-config.php file in core hack of non-WordPress:

Code:
define( ‘CONCATENATE_SCRIPTS’, false );
define( ‘SCRIPT_DEBUG’, true );
Just give your try to solve the error by fixing it immediately! Hope, this article will help you at core!
Author
kumkumsharma
Views
5,877
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from kumkumsharma

Top