this is a bad link. How do I fix
Hello There,
Thanks for writing in!
To know more about this, please check out it:
https://varvy.com/rel/dns-prefetch.html
This <link....>
is coming from a plugin. You can test for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.
If the issue still exist, please re install X theme and Cornerstone. There might be some files that were corrupted. You can review our update guide and see the Manual Update section to re install X.
Please let us know how it goes.
no effect. I deactivated all of my plugins including cornerstone and the statements
link rel=‘dns-prefetch’ href=’//fonts.googleapis.com’ />
link rel=‘stylesheet’ id=‘x-google-fonts-css’ href=’//fonts.googleapis.com/css?family=Open+Sans%3A400%2C400italic%2C700%2C700italic%2C600|Lato%3A700&subset=latin%2Clatin-ext&ver=5.2.5’ type=‘text/css’ media=‘all’ />
Still appear. I also tried manually reinstalled X and the statements were still there.
Hey there,
Would you mind providing us with login credentials so we can take a closer look? Please provide following information:
Set it as Secure Note
- Link to your site
- WordPress Admin username / password
- FTP credentials
All the best!
How do I send a secure note?
BTW I think this is in the slider because it also appears in
div class=“x-slider-container below”>
link href=“https://fonts.googleapis.com/css?family=Open+Sans:400%2C300%2C600” rel=“stylesheet” property=“stylesheet” type=“text/css” media=“all”>
I just noticed that there a general setting in slider revolution called font loading url to replace fonts.googleapi
I wonder if you can give me some advice about what to use instead.
https://fonts.googleapis.com/css?family=Open+Sans:400%2C300%2C600" is a good link.
Hi,
It’s not related to revslider but related to wordpress.
To remove it, you can add this in your child theme’s functions.php
file.
function remove_dns_prefetch( $hints, $relation_type ) {
if ( 'dns-prefetch' === $relation_type ) {
return array_diff( wp_dependencies_unique_hosts(), $hints );
}
return $hints;
}
add_filter( 'wp_resource_hints', 'remove_dns_prefetch', 10, 2 );
For more information kindly refer to the link below.
Hope that helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.