Comments Mandy started the conversationMarch 4, 2024 at 7:56pmHello,We'd like to deactivate DNS prefetch on our site, since we don't need any of the services. How / where can we remove these lines? Thanks!<meta http-equiv='x-dns-prefetch-control' content='on'><link rel='dns-prefetch' href='//s.gravatar.com' /><link rel='dns-prefetch' href='//www.google-analytics.com' /> 2,610PenciDesign repliedMarch 5, 2024 at 12:55amHi,You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/ add_filter( 'penci_soledad_optimize_dns_domains', function( $domains ) { return [];} );Regards,PenciDesign.1 LikeMandy repliedMarch 5, 2024 at 7:55amPerfect, thank you! Sign in to reply ...
Hello,
We'd like to deactivate DNS prefetch on our site, since we don't need any of the services. How / where can we remove these lines?
Thanks!
<meta http-equiv='x-dns-prefetch-control' content='on'>
<link rel='dns-prefetch' href='//s.gravatar.com' />
<link rel='dns-prefetch' href='//www.google-analytics.com' />
Hi,
You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/
Regards,
PenciDesign.
Perfect, thank you!