Help with editing footer

Permalink 1 user found helpful
I consider myself a newbie at this sort of thing, and I need some help with editing my global footer.

I would like to remove everything on the footer, but keep the copyright info and the login link. What do I change it the footer.php file?

I am using Concrete5 5.7 (the newest).
My theme is Valhalla Responsive.

EngineerofStuff
 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi DrakePanzer,

What version of concrete5 are you using and which theme?
EngineerofStuff replied on at Permalink Reply
EngineerofStuff
I am using 5.7 (the newest).

My theme is Valhalla Responsive.
EngineerofStuff replied on at Permalink Reply
EngineerofStuff
I need some help.
Steevb replied on at Permalink Reply
Steevb
Just remove all unwanted code except copyright and login?
EngineerofStuff replied on at Permalink Reply
EngineerofStuff
I did that. I removed the code from line 41-49 of the footer.php file. It broke some things on my website.
EngineerofStuff replied on at Permalink Reply
EngineerofStuff
I want to replace the word "Site" with Drake Panzer. How do I do this?

<div class="credits sixteen columns row">   
         <p>© <?php   echo date('Y')?> <?php   echo SITE?> | <?php   echo t('All rights reserved |')?> 
         </a> | 
          <a href="<?php   echo $this->url('/login')?>"><?php   echo t('Login')?></a></p>
   </div>

If I change "SITE" it will break the footer and some colors on my website.
EngineerofStuff replied on at Permalink Best Answer Reply
EngineerofStuff
I solved it.

I had to add parenthesis around the Drake Panzer.

It looks like this:
<div class="credits sixteen columns row">   
         <p>© <?php   echo date('Y')?> <?php   echo 'Drake Panzer'?> | <?php   echo t('All rights reserved |')?> 
         <a href="<?php   echo $this->url('/login')?>"><?php   echo t('Login')?></a></p>
   </div>