Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3598656
Remove DNS Prefetch
Closed

Comments

  • Mandy started the conversation

    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' /> 


  •  2,541
    PenciDesign replied

    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/

    add_filter( 'penci_soledad_optimize_dns_domains', function( $domains ) {
        return [];
    } );

    Regards,
    PenciDesign.



  • Mandy replied

    Perfect, thank you!