Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

How can I change the silverstripe link at the bottom of the admin side?


Go to End


3 Posts   2231 Views

Avatar
Soumen

Community Member, 7 Posts

4 August 2008 at 5:44pm

Hi all,
I am new to silverstripe. While customizing silverstripe I am facing a problem. I am unable to remove the silverstripe version and silverstripe link at the bottom of the admin side.
Plz help me to remove it.
Advanced thanks for your valuable time.

Thanks,
Soumen

Avatar
ladrao2007

Community Member, 16 Posts

4 August 2008 at 5:56pm

In the CMS folder there is another folder called templates, inside of that template is a file called LeftAndMain.ss, if you look for the following code, you can either change the text at the bottom, or remove it completely.

	<div id="bottom">
		<div class="holder">
		<div id="logInStatus">
			<a href="http://www.silverstripe.com" title="<% _t('SSWEB','Silverstripe Website') %>">SilverStripe CMS</a>&nbsp;-&nbsp;
			<abbr style="border-style: none" title="<% _t('APPVERSIONTEXT1',"This is the") %> $ApplicationName <% _t('APPVERSIONTEXT2',"version that you are currently running, technically it's the CVS branch") %>">$CMSVersion</abbr> &nbsp; &nbsp; &nbsp; 
			<% control CurrentMember %>
			<% _t('LOGGEDINAS','Logged in as') %> <strong><% if FirstName && Surname %>$FirstName $Surname<% else_if FirstName %>$FirstName<% else %>$Email<% end_if %></strong> | <a href="{$BaseHref}admin/myprofile" id="EditMemberProfile"><% _t('EDITPROFILE','Profile') %></a> | <a href="Security/logout" id="LogoutLink"><% _t('LOGOUT','log out') %></a>
		<% end_control %>
		</div>

Hope that helps

Avatar
Soumen

Community Member, 7 Posts

4 August 2008 at 7:13pm

It helps.

Thanks very Much