How to remove Concrete5 logo from top of Registration page

Permalink
Hello!

Can you tell me what page must I edit and what bit of code must I cut to remove the Concrete5 logo from the Registration page?

Thanks!
Ruben

rubencouto
 
adajad replied on at Permalink Best Answer Reply
adajad
Login is a single page and can be set to use your current theme as wrapper.

Your theme needs to have a view.php including the code below for use with single pages:

<?php
    Loader::element('system_errors', array('error' => $error));
    print $innerContent;
?>


The system errors bit is optional.

Now, in your folder 'webroot/config' you have a file named 'site_theme_paths.php'. Read the comments so you understand it and then add the following:

$v->setThemeByPath('/register', "your_theme_name");


Make sure you have uncommented $v = View::getInstance();

Read more about it in this how-to: http://www.concrete5.org/documentation/how-tos/designers/themimg-sy...
rubencouto replied on at Permalink Reply
rubencouto
It worked!

Thanks a lot!! :)
mesuva replied on at Permalink Reply
mesuva
I never realised that the errors part was actually available as an element. That's a cool tip, cheers.