I've been looking answer for the same issue... and I came up with the idea.
1. Create override file for Controller.php in override/classes/controller/
2. You have to modify addJqueryPlugin function, for example:
public function addJqueryPlugin($name, $folder = null, $css = true)
{
if (!is_array($name))
$name = array($name);
if (is_array($name))
{
foreach ($name as $plugin)
{
if($plugin != 'bxslider')
{
$plugin_path = Media::getJqueryPluginPath($plugin, $folder);
if (!empty($plugin_path['js']))
$this->addJS($plugin_path['js'], false);
if ($css && !empty($plugin_path['css']))
$this->addCSS(key($plugin_path['css']), 'all', null, false);
}
}
}
}
3. As you can see, I added after foreach: "if($plugin != 'bxslider')" and checked if module name isn't bxslider.