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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

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

Rebranding silver stripe, I can't get rid of this silverstripe alt tag or website link


Go to End


2 Posts   1894 Views

Avatar
TF-35Lightning

Community Member, 137 Posts

15 March 2010 at 3:52pm

Edited: 15/03/2010 4:16pm

Hi all,

Am trying to do a simple rebrand of silverstripe.

I have successfully redone the loading logo and name in the bottom right footer of the admin, but when I hover my mouse over my newly changed name I get an alt tag popup showing the word Silver Stripe Website, and a link pointing to silverstripe.org. Both of these things I am trying to get rid of.

Here is the few tutorial I went through.

http://doc.silverstripe.org/doku.php?id=recipes:rebranding-the-cms

Any help would be great

Avatar
ricpersi

Community Member, 3 Posts

20 March 2010 at 6:37am

I noticed that the LeftAndMain::setApplicationName(); function accepts more than one argument, so try something like this:

LeftAndMain::setApplicationName('Rebranded Name', 'Rebranded Name', 'http://www.mysite.com');

To rebrand the "title" attribute of the <a> tag in the footer you can create a lang/xx_XX.php file, that looks like this:

$lang['xx_XX']['LeftAndMain.ss']['SSWEB'] = 'Rebranded Name';

where "xx_XX" is your locale.

Regards,

Riccardo