Editing the footer

Permalink
I saw in another thread (in the Jobs forum) how to change footer text. I looked in my theme elements folder (Green Salad theme) in the footer.php file and see only:
<?php defined('C5_EXECUTE') or die("Access Denied."); ?>
<?php Loader::element('footer_required'); ?>

On the chance that the Default theme overrides other themes I made some text changes on the sign in statement and it had not effect.

Is there another file I should be looking at?

Thanks

docrocks
 
12345j replied on at Permalink Reply
12345j
for the green salad theme this needs to be changed on a per page type basis. The login text is located in default, home, full, and view.php. If you go into those themes you should see something like
<span class="sign-in"><?php echo t('Currently logged in as <b>%s</b>.', $userName)?> <a href="<?php echo $this->url('/login', 'logout')?>"><?php echo t('Sign Out')?></a></span>
         <?php  } else { ?>
            <span class="sign-in"><a href="<?php echo $this->url('/login')?>"><?php echo t('Sign In to Edit this Site')?></a></span>
this is the sign in text and what you need to edit. Also, you should copy greensalad to root/themes, not root/concrete/themes, otherwise all your changes will be overwritten when you upgrade.