Tagged: performance
Hi,
See the performance report here for our enfold website from server in India: https://gtmetrix.com/reports/isha.sadhguru.org/iUGErG3T
Can you suggest some improvement suggestions please. Considering top most topics in the report.
1) Can we use BWP Minify, if so what are the js/css that need to be excluded
2) How do we reduce the redirects that happen on the theme files
3) Is there a simple way to remove query strings
Regards,
Subba
Hey ishafoundation!
Yes, you can use it but please make sure to disable it while you are making styling changes, then flush cache and enable it
Please add following code to Functions.php file in Appearance > Editor
add_filter( 'style_loader_src', 'avia_remove_version' );
add_filter( 'script_loader_src', 'avia_remove_version' );
function avia_remove_version( $url )
{
return remove_query_arg( 'ver', $url );
}
Regards,
Yigit