Prevent Concrete 5.7.4 from loading Bootstrap default files in registration

Permalink
Hi,

I'd like to remove the ccm-toolbar and app.css that Concrete5 loads by default in the login/registration page.
I already figured I could do
$this->addHeaderItem($html->css('/application/themes/theme/css/main.css'));

in order to load my own CSS, but now Concrete5 overrides mine.

VPenkov
 
VPenkov replied on at Permalink Best Answer Reply
VPenkov
Got it.
/application/config/app.php

<?php
return array(
   'theme_paths'         => array(
        '/register'            => 'theme'
    ),
);