'how to remove this skip to content wordpress error?
Solution 1:[1]
It's not a bug, it's a feature!
That "skip to content" link makes it easier to navigate with the keyboard. If you press TAB on your keyboard that link appears and if you select it, the focus skips to the content and you don`t have to TAB through the whole header.
But your css is not loading properly, so the "skip to content link" is visible.
Try to set the the "Wordpress-URL" and the "Website URL" to the right values in the settings.
Regards Tom
Solution 2:[2]
Adding the following code to the wp-config.php file may fix the problem:
if(isset($_SERVER['HTTP_SSL']))
{
$_SERVER['SERVER_PORT']=443;
$_SERVER['HTTPS']='on';
}
Solution 3:[3]
This error is very disturbing. I had the same error and I fixed it with the code below:
define( 'CONCATENATE_SCRIPTS', false );
Add the code to wp-config.php file. It's a css error. Also check your CDN configuration. I turned my off (Godaddy Managed WordPress Hosting). My site is back and running smoothly.
Hope this helps.
Thanks
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Uklove |
| Solution 2 | Saman Salehi |
| Solution 3 | Lucas |

