Page 1 of 1
DISABLE SIGNED-IN MESSAGE IN FOOTER (SOLVED)
Posted: Tue Aug 11, 2015 6:48 pm
by cart builder
How could I disable or remove the "You are signed in as .........Click here to Logout." message that appears in a grey box in the footer whenever a user is signed in? I'm using OC 1.5.5.1 Thanks.
Re: DISABLE SIGNED-IN MESSAGE IN FOOTER
Posted: Tue Aug 11, 2015 8:32 pm
by straightlight
In the default template, it would be from: catalog/theme/default/template/common/header.tpl file:
Code: Select all
<div id="welcome">
<?php if (!$logged) { ?>
<?php echo $text_welcome; ?>
<?php } else { ?>
<?php echo $text_logged; ?>
<?php } ?>
</div>
If using a custom template, you might want to look into your common folder for
text_logged . From the default template, the sentence is:
You are logged in as .
Re: DISABLE SIGNED-IN MESSAGE IN FOOTER
Posted: Tue Aug 11, 2015 8:56 pm
by cart builder
@straightlight - it removes the "You are logged in as.....(Logout)" in the header, which I want to keep, but not the:
"You are signed in as .........Click here to Logout." message that appears in a grey box in the footer on every page.
I've had a look in the footer.tpl but can't find anything that relates to this. I would be really grateful for any help. Thanks.
Re: DISABLE SIGNED-IN MESSAGE IN FOOTER
Posted: Tue Aug 11, 2015 9:00 pm
by straightlight
Would it be possible to provide your URL so I can take a look?
Re: DISABLE SIGNED-IN MESSAGE IN FOOTER
Posted: Tue Aug 11, 2015 10:13 pm
by cart builder
I've pm'd you with the details. Thanks.
Re: DISABLE SIGNED-IN MESSAGE IN FOOTER
Posted: Tue Aug 11, 2015 11:32 pm
by cart builder
It looks like the issue was simply a conflict with the mobile theme. I removed the mobile .xml file and problem solved!
I'll just have to change the code you've managed to find in the mobile .xml file. Many thanks for your help!