Remove member and help links

LPH

Well-known member
Licensed customer
What is the best method for removing these two links in the navigation template ?
 
Your gallery tab is bugged:

Rich (BB code):
                <li class="navTab $extraTabId Popup PopupControl PopupClosed">
            
                <a href="index.php?useralbums/" class="navLink">Gallery</a>
                <a href="index.php?useralbums/" class="SplitCtrl" rel="Menu"></a>
                
                <div class="Menu JsOnly tabMenu">
                    <div class="primaryContent menuHeader">
                        <h3>Gallery</h3>
                        <div class="muted">Quick Links</div>
                    </div>
                    <ul class="secondaryContent blockLinksList">
    <li><a href="index.php?useralbums/create">Create Own Album</a></li>
    <li><a href="index.php?useralbums/own">View own albums</a></li>
</ul>
                </div>
            </li>

It looks like your custom navigation template is missing some curly brackets:

Admin CP -> Appearance -> Templates -> navigation

Make sure this code is correct (as shown in this bug report):

http://xenforo.com/community/threads/extratabid-missing-from-nav-tab.25643/

I don't see an Applications tab on your forum.
 
Your gallery tab is bugged:

Rich (BB code):
                <li class="navTab $extraTabId Popup PopupControl PopupClosed">
           
                <a href="index.php?useralbums/" class="navLink">Gallery</a>
                <a href="index.php?useralbums/" class="SplitCtrl" rel="Menu"></a>
               
                <div class="Menu JsOnly tabMenu">
                    <div class="primaryContent menuHeader">
                        <h3>Gallery</h3>
                        <div class="muted">Quick Links</div>
                    </div>
                    <ul class="secondaryContent blockLinksList">
    <li><a href="index.php?useralbums/create">Create Own Album</a></li>
    <li><a href="index.php?useralbums/own">View own albums</a></li>
</ul>
                </div>
            </li>

It looks like your custom navigation template is missing some curly brackets:

Admin CP -> Appearance -> Templates -> navigation

Make sure this code is correct (as shown in this bug report):

http://xenforo.com/community/threads/extratabid-missing-from-nav-tab.25643/

I don't see an Applications tab on your forum.

I'm really confused. Where do I add this to the template? at the end?
 
You can just revert the template to fix it. But if you want to save your customizations then you need to fix the code (replace $extraTabId with {$extraTabId}).
 
Flexile is a highly customized style. You should contact the author of that style about this bug.

In the meantime I can manually fix your template if you give me a URL and admin login to your forum. But I am away from my computer for like 18 hours starting now.
 
ok.I have reimported the styles,which fixed the screwed up forum. Now I just have to work out this extratabID thingy....I'm going to have a play. I want to get this sorted. I appreciate your help (just a pity your going out! lol :) )
 
Fixed.

Now you need this:

Admin CP -> Appearance -> Templates -> EXTRA.css

Code:
.navTabs .navTab.useralbums,
.navTabs .navTab.forms
{
	display: none;
}
 
When I hide Help tab with this:

Code:
/* no Help tab in navbar */
li.navTab.help{
display: none;
}

It looks like this when I click on Help (I put the Help link in my footer)

Screen Shot 2013-04-29 at 5.42.41 PM.webp
 
When I hide Help tab with this:

Code:
/* no Help tab in navbar */
li.navTab.help{
display: none;
}

It looks like this when I click on Help (I put the Help link in my footer)

View attachment 45402

That's what happens when a page is assigned to a tab that doesn't exist (because you removed it).

I suggest hiding the tab when it's not selected:

http://xenforo.com/community/threads/move-menu-items.20654/#post-263851

Or assign those pages to a different tab with a file edit:

http://xenforo.com/community/thread...which-default-to-forum-tab.30502/#post-352357

Or you can use this addon:

http://xenforo.com/community/resources/nodes-as-tabs.9/

The latest 1.1.3 update supports changes to tab assignments via link-forums.
 
  • Like
Reactions: DRE
Back
Top Bottom