Всем привет.
Шаблон сверстан в bootstrap 4 пытаюсь натянуть на Joomla 3 .
Вот вчем проблема вылезли в консоле ошибки :
1)Uncaught ReferenceError: jQuery is not defined
2)Uncaught ReferenceError: jQuery is not defined
И возьмись не откуда появились блоки при выводе контента блоки которые перекрывают верстку в контенте
<div class="item-page" itemscope itemtype="https://schema.org/Article">
<meta itemprop="inLanguage" content="ru-RU" />
<div itemprop="articleBody">
код index.php
начало
defined('_JEXEC') or die;
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<jdoc:include type="head"/>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap.min.css" >
<link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/slick.css" type="text/css" />
<link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/fridges.css" type="text/css" />
<link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/fridges-media.css" type="text/css" />
<link href="templates/<?php echo $this->template ?>/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/jquery-3.5.0.min.js"></script>
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/slick.min.js"></script>
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/fridges.js"></script>
<script src="https://use.fontawesome.com/8c15de8939.js"></script>
</head>
Конец
<?php
JHtml::_('jquery.framework');
// Remove Scripts
$doc = JFactory::getDocument();
unset($doc->_scripts[JURI::root(true). '/media/jui/js/jquery.min.js']);
unset($doc->_scripts[JURI::root(true). '/media/jui/js/jquery-noconflict.js']);
unset($doc->_scripts[JURI::root(true). '/media/jui/js/bootstrap.min.js']);
?>
Как это все вылечить.
Спасибо.