I observed that I need three (and a half) steps to log in
- open sidebar
- click Special pages
- click Log In (after scrolling)
Is this intended behaviour? Thanks in advance for helpful responses.
I observed that I need three (and a half) steps to log in
Is this intended behaviour? Thanks in advance for helpful responses.
I currently too wish the Apex Skin had a Login Link at the top were the Logout Link is displayed if you are not logged in. But Yes it's complicated being in that bar and I have has Users complain about that.
I suggest making a link yourself on the main page that links to the back to your special page page "http://WikiURL/index.php?title=Special:UserLogin"
In the Apex Template.php, I added the line in bold below:
<div class="apex-content-wrapper">
<div id="content" class="mw-body">
<div style="float: right;">
<a href="http://'''YOURWIKISITE'''/index.php?title=Special:UserLogin">[ Login |</a>
<a href="http://'''YOURWIKISITE'''/index.php?title=Special:UserLogout&returnto=Main+Page">Log Out ]</a>
</div>
To Make the link appear on every page regardless, not as night as having the dynamic option link at the top like you would expect and I'm not a PHP Expert, but it works for me.
To fix this issue so a login button always appears when not logged in, in ApexTemplate.php change these lines
<h5><?php $this->msg( 'personaltools' ) ?></h5> <ul<?php $this->html( 'userlangattributes' ) ?>> <?php foreach ( $this->getPersonalTools() as $key => $item ): ?> <?php if ( $key === 'userpage' ): ?>
TO Adding a || $key === 'login'
<h5><?php $this->msg( 'personaltools' ) ?></h5> <ul<?php $this->html( 'userlangattributes' ) ?>> <?php foreach ( $this->getPersonalTools() as $key => $item ): ?> <?php if ( $key === 'userpage' || $key === 'login'): ?>
Inside "protected function renderNavigation( $elements )" Inside "case 'PERSONAL':"
Based on apex for mediawiki 1.33
Hi, Is there a way to move the search bar and to change the style of it ?
Anyone can give me some clue where the line code of this is ?
That doesn't help in this case, apex uses a on-hover event to show the TOC, and I'm looking for a way to permanently show it and stick it on the side, something like Google Docs auto navigation panel.
Ah, I did not know since I do not use this skin anywhere. Sorry cannot be of help here.