Bootstrap JavaScript Conflicts With Dashboard

I figured it out, I needed to add this to page_theme.php (and I removed bootstrap from my footer):

    public function registerAssets()
    {
        $this->requireAsset('javascript', 'jquery');
        $this->requireAsset('javascript', 'bootstrap');
    }

I also had to add jQuery as well because my comment sections weren’t loading when I was logged out. Are there more blocks that require jQuery?

1 Like