Which theme uses concrete5.org
Permalink 1 user found helpful
Hiya there.
Just wondering which theme the website concrete5.org is using, like that a lot.
Regards
Prof.P
Just wondering which theme the website concrete5.org is using, like that a lot.
Regards
Prof.P
Alright, thanks.
Another question: do you know how to change the design of the standard log-in page? The design of the templates never apply to the log-in page!?
Regards
Prof.P
Another question: do you know how to change the design of the standard log-in page? The design of the templates never apply to the log-in page!?
Regards
Prof.P
go to:
root/config/site_theme_paths.php you'll find this code. change "yourtheme" to the name of the theme you are using. Then remove the // from the front of the pages that you want to use your theme for.
/*
$v = View::getInstance();
$v->setThemeByPath('/login', "yourtheme");
// $v->setThemeByPath('/403', "yourtheme");
// $v->setThemeByPath('/register', "yourtheme");
// $v->setThemeByPath('/dashboard', "yourtheme");
*/
so in the end you would end up with this:
$v = View::getInstance();
$v->setThemeByPath('/login', "yourtheme");
$v->setThemeByPath('/403', "yourtheme");
$v->setThemeByPath('/register', "yourtheme");
// $v->setThemeByPath('/dashboard', "yourtheme");
This would output your theme for the login, 403 redirect, and the register page but not the dashboard.
cheers!
root/config/site_theme_paths.php you'll find this code. change "yourtheme" to the name of the theme you are using. Then remove the // from the front of the pages that you want to use your theme for.
/*
$v = View::getInstance();
$v->setThemeByPath('/login', "yourtheme");
// $v->setThemeByPath('/403', "yourtheme");
// $v->setThemeByPath('/register', "yourtheme");
// $v->setThemeByPath('/dashboard', "yourtheme");
*/
so in the end you would end up with this:
$v = View::getInstance();
$v->setThemeByPath('/login', "yourtheme");
$v->setThemeByPath('/403', "yourtheme");
$v->setThemeByPath('/register', "yourtheme");
// $v->setThemeByPath('/dashboard', "yourtheme");
This would output your theme for the login, 403 redirect, and the register page but not the dashboard.
cheers!
Thanks for the response,
great stuff.
But is there any reason why this is static?
great stuff.
But is there any reason why this is static?
What this does is pull the view.php file from your theme. If you want to customize this even further then add a page called login.php to root/single_page
then customize away!
then customize away!
At least do you know a template which resembles the one on c5.org?
Cheers,
Prof.P
Cheers,
Prof.P
i don't think you can buy it ;)