• Hello How to remove “Remove query strings from static resources”
    Even i have unchecked the “Prevent caching of objects after settings change ” in browser cache tab in w3tc but it is still coming kindly help me out i have tried adding this `function _remove_script_version( $src ){
    $parts = explode( ‘?ver’, $src );
    return $parts[0];
    }
    add_filter( ‘script_loader_src’, ‘_remove_script_version’, 15, 1 );
    add_filter( ‘style_loader_src’, ‘_remove_script_version’, 15, 1 );`

    to my function.phpp file also but the result is same .
    So tell me what to do now.

    https://wordpress.org/plugins/w3-total-cache/

  • The topic ‘How to remove Remove query strings from static resources’ is closed to new replies.