Speed Problem with Rev Slider
Hello,
I got an error message from gtmetrix on website beta17a.carshine.it and asked themepunch for that:
The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save 1 request(s) and 25.5KiB.
Hi Waldemar,
Sorry to say that somehow your theme is not working with code which i am using to remove one script, i tested code in default theme and it’s working fine, code is :
function remove_scripts_styles_footer() {
wp_deregister_script('revmin-migration');
}
add_action('wp_head', 'remove_scripts_styles_footer');
If you want to solve this immediately, i suggest to ask on theme support if they are modifying something in enqueue process since that code should work like default theme.
Otherwise i will suggest developers to remove one file from source but it may take some time to push that update live.
Thanks.
-Denish Patel.
Comments
If you want to inlude this function, you can paste it into your functions.php file. Remember to use a child theme.
thanks