providesAsset not working
PermalinkI'm trying to convert an html theme to concrete5. I'm providing jquery as part of my theme and this is my page_theme.php:
<?php namespace Application\Theme\Core; use Concrete\Core\Area\Layout\Preset\Provider\ThemeProviderInterface; class PageTheme extends \Concrete\Core\Page\Theme\Theme { public function registerAssets() { $this->providesAsset('javascript', 'jquery'); $this->providesAsset('css', 'bootstrap/*'); $this->requireAsset('javascript', 'bootstrap/*'); } }
For some reason when I view source on the site, I can see that concrete5 is still loading its own jquery file:
<script type="text/javascript" src="/core/concrete5/concrete/js/jquery.js"></script>
This is causing bugs when trying to edit content which makes the site unusable at the moment. What am I doing wrong?

This is the directory where page_theme.php is located:
/var/www/core/concrete5/application/themes/Core/
Also, the theme directory should be lowercase, so it should be application/theme/core/page_theme.php
Your code is correct though if that's what your directory structure looks like.