Options
Trying to edit the "login" text.
Not the people file but rather the "Not signed in (Sign In)" text.
Which file would I need to edit it?
0
This discussion has been closed.
Comments
#Session { position: absolute; top: 10px; right: 15px; color: #FFF; }
Change to:
#Session { display: none; }
as far as changing the link... will have to check and get back to you
$Configuration['SIGNIN_URL']
to the wordpress log in page in your/conf/settings.php
. I don't think it would already be in that file.And you will have to undo the changes in the language file :-)
As far as the CSS bug... ick. Will play with that a bit.
Add
height: 0;
in#Header h1
and you are set. Tested with IE 7, so make sure it is OK in IE 6.#Session {display: none; visibility: hidden;}
echo '<div id="Session">'; if ($this->Context->Session->UserID > 0) { echo str_replace('//1', $this->Context->Session->User->Name, $this->Context->GetDefinition('SignedInAsX')).' (<a href="'.$this->Context->Configuration['SIGNOUT_URL'].'">'.$this->Context->GetDefinition('SignOut').'</a>)'; } else { echo $this->Context->GetDefinition('NotSignedIn').' (<a href="'.AppendUrlParameters($this->Context->Configuration['SIGNIN_URL'], 'ReturnUrl='.GetRequestUri()).'">'.$this->Context->GetDefinition('SignIn').'</a>)'; } echo '</div>';
Anyone with the web developer extension can "un"-hide the login html.
(Then again I suppose anyone with knowledge of Vanilla could straight out type the people.php URL...)