It is not enough to remove several lines from the template and modules. My solution is to create a plugin:
class plgSystemYourPlugin extends JPlugin
{
public function onBeforeCompileHead()
{
$app = JFactory::getApplication();
if( $app instanceof JApplicationSite )
{
$doc = JFactory::getDocument();
unset($doc->_scripts[JURI::root(true).'/media/jui/js/bootstrap.min.js']);
}
}
}
He works at Joomla! 3.2 - 3.6.
source
share