Removing "Login" from The Column Cruiser - theme

Permalink
Would someone please tell me how to remove the word "Login" from my homepage. It appeared in the upper right corner of the header after I made the website available to the public. The URL ishttp://www.heres2goodfriends.com.

 
guythomas replied on at Permalink Best Answer Reply
guythomas
navigate to themes/column_cruiser/elements/header.php and remove the following lines..

<?php
      $uinfo = new User();
      if($uinfo->IsLoggedIn()){ ?>
        <a href="<?php echo $this->url('/login/-/logout')?>">Logout</a> | <a href="<?php echo $this->url('/profile')?>">My Profile</a> | <a href="<?php echo $this->url('/imprint')?>">Imprint</a>
     <?php   
      } else { ?>
        <a href="<?php echo $this->url('/login')?>">Login</a> | <a href="<?php echo $this->url('/register')?>">Register</a> | <a href="<?php echo $this->url('/imprint')?>">Imprint</a>
     <?php   }?>


That should do it.

-Guy
onelife replied on at Permalink Reply
It worked. Thank you very much.