Somewhere in the parent theme for which I'm creating a child theme, the following line is executed:
wp_enqueue_script('quovolver', get_template_directory_uri() . '/js/jquery.quovolver.js','','',true); I want to remove this script, so I added in the end of "footer.php":
wp_deregister_script('quovolver'); However it doesn't work as the script is still called. Why is that?