Creating custom register page

Permalink
Is there any other way to create custom registration page, other than changing code in register.php? Because i don`t know much about php and/or javascript and using default registration page is not an option.

 
senshidigital replied on at Permalink Reply
senshidigital
You can upload a register.php single page template in your own design but make sure you copy across the register code from the original file:

<?php  
if($success) { 
   switch($success) { 
      case "registered": 
         ?>
         <p><strong><?php echo $successMsg ?></strong><br/><br/>
         <a href="<?php echo $this->url('/')?>"><?php echo t('Return to Home')?></a>
         <?php  
      break;
      case "validate": 
         ?>
         <p><?php echo $successMsg[0] ?></p>
         <p><?php echo $successMsg[1] ?></p>
         <p><a href="<?php echo $this->url('/')?>"><?php echo t('Return to Home')?></a></p>
         <?php


Then in your site_theme_paths.php file put in the following line of code:

$v->setThemeByPath('/register', "your theme folder");


You can do the same with login, error pages etc.
LowConnection replied on at Permalink Reply
I`m not very bright when it comes to code editing, is there any FAQ or something? Right now i`m using column cruiser template and want register page to be same design as template. I tried to do something according to your advice, but ended up having my site blanked out, needed to rollback whole site, obviously i`m doing something wrong. I would appreciate if someone would explain me step by step.

I have few more questions, didn`t want to create new thread will stick them in here.

There is very cool add-on named Remo Expander, i wanted to put my own images instead of default ones, put there is height limit set and i can`t find where can i change it.

Another very nice add-on is Zoom Image, question is it possible to move X from left upper corner to right upper corner.

Thanks for your help in advance.
12345j replied on at Permalink Reply
12345j
http://www.codeblog.ch/2010/01/concrete5-custom-404-page/
and
http://c5cookbook.com/recipes/customize_404_page...
show how to do it for 404 pages, easy to figure out from there.