• I already unchecked ” Prevent caching of objects after settings change” but i still keep getting this message.. i get a high score in pingdom but my site loads very slowly, whats going on

Viewing 5 replies - 1 through 5 (of 5 total)
  • You are using a Dynamic Website, Ignore those.

    You can remove query strings, and that will help a little. Chances are you have more serious speed issues.

    Use in functions.php:

    // Remove Query Strings
    add_filter( 'style_loader_src', 'remove_query_string' );
    add_filter( 'script_loader_src', 'remove_query_string' );
    function remove_query_string( $url )
    {
        return remove_query_arg( 'ver', $url );
    }
    Thread Starter jshariar

    (@jshariar)

    Chances are you have more serious speed issues.

    How do i identify those issues?

    Thread Starter jshariar

    (@jshariar)

    You can remove query strings, and that will help a little. Chances are you have more serious speed issues.

    Use in functions.php:

    // Remove Query Strings
    add_filter( ‘style_loader_src’, ‘remove_query_string’ );
    add_filter( ‘script_loader_src’, ‘remove_query_string’ );
    function remove_query_string( $url )
    {
    return remove_query_arg( ‘ver’, $url );
    }

    Did that and i got 500 internal error everywhere

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to " Remove query strings from static resources" in W3TC ?’ is closed to new replies.