• Resolved johnmccurdy

    (@johnmccurdy)


    What is this tag for, other than branding, which is on every page of my site (with different times listed on every page load): <!– / The SEO Framework by Sybre Waaijer | 4.13ms meta | 1.48ms boot –>

    More important, where do those times come from, and how can I turn them off?

    It seems to me that this is the kind of information that should NEVER be offered to the public, and it is making my change monitoring service crazy. Otherwise your plugin is great, so how can I turn these times off?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    Howdy!

    The HTML comments help me find the metatags of TSF quickly whenever a user requests support.

    The boot time indicates the setup time for TSF (file inclusion, hook insertion, etc.), and the meta time tells the time it takes to generate the meta tags. These help me track changes in performance at a glance.

    That information can be discerned publicly without the help of TSF’s comment — just hit F12 and navigate to the “Network” tab in the browser’s developer tools.

    In any case, we developed an extension to eliminate those comments: https://tsf.fyi/ext/incognito.

    You can also implement this filter to get rid of them immediately:

    add_filter( 'the_seo_framework_indicator', '__return_false' );
    
    Thread Starter johnmccurdy

    (@johnmccurdy)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Boot time in page comment?’ is closed to new replies.