MY WP-Classipress adds version number to all files.. JS,CSS,etc plz HELP!!
Hello all
i have a bad page speed value for my site
http://www.xarizo.com
and one of the reasons is that i don't have 'Clean' URLS like
http://xarizo.com/wp-content/themes/...n.js?ver=1.1.4
when a clean url should be the part before the question mark... like..
http://xarizo.com/wp-content/themes/...lectbox.min.js
it also affects the browsing caching and the page loads slower
The gtmetrix says that i have to
'Remove query strings from static resources'
I dont know how to do that.
Questions:
1. Is it something that concerns Classipress?
2. Can
SEO Yoast pluging fix this and how?
3. I put a segment of code in my functions.php and cleaned the urls but i have a problem of google maps..
4. Do i have to edit .htaccess?
the code is this..
function _remove_script_version( $src ){
$parts = explode( '?', $src );
return $parts[0];
}
add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
I need an expert both on
WP and Classipress to resolve this...
I am investigating on google at the same time...
thank you all
hngm