Custom Tabs

Custom Tabs 1.6.3

No permission to download
Breadcrumb

Is it possible to show the tab structure in the breadcrumb? For example, let's say I create a tab named My Tab with a sublink titled My Link. The current breadcrumb path for My Link would be something like: Home -> Forums -> My Tab. It would be great if the breadcrumb followed the tab structure: Home -> My Tab. I believe Nodes As Tabs does that.
 
How can i make that the 'parent' tabs have no link, even when i fill in 'blank' it is still a link and shows when clicking at it a 'not found' error page.
The child tabs are working perfectly (link to arcade, quiz etc...).
 
Hello Siropu,
There are some way to translate the name of the tabs to other languages installed in the board?
:coffee:
//
Edit, well, I have 3 languages, so I've created 3 tabs each one with a criteria :D
R 2015-05-08 at 21.32.41.webp
 
Last edited:
@Brad L, I will see what I can do. Sorry about the late response, I've missed your post for some reason.
@wEbAddEr, try using javascript:void(0) as the url.
@rafass, version 1.4.0 will have support for phrases. I hope I can release it today.
 
Siropu updated Custom Tabs with a new update entry:

New Features

Version 1.4.0 comes with the following features:
  1. Phrase support (use phrase:your_phrase as the title)
  2. Tooltip support (set description to display it in a Tooltip when you hover over tab)
  3. Set to display the dropdown on tab hover, instead of hover over arrow
This is a fast update, I hope there will be no bugs. :)

Read the rest of this update entry...
 
First i like your addon.

But i have some questions.

I create a custom tab. See pic below.

custom tab.webp

If i chose the link no. 1 it will open like it should and have still a arrow.

custom tab1.webp

If i open the second link from the first pic i got this. No arrow anymore.

custom tab2.webp

If open the third link i got this. No arrow but second line of the other links.

custom tab3.webp

The settings are same for all of the links.
Why do i have this different behavior?

1 and 3 are ok. Best is 3. But second is not really user friendly.
 
Node as tabs.
But don`t use it at the moment.

And for the addons i use in this tab like CTA featured Threads, Hotspot, Events and xfsoccer i switch of their own navigation in Code Event Listeners.
 
First Great addon!

I'm trying to add a new menu link to a XFMG album and now I end up with both tabs selected (Media and Test Link)

upload_2015-5-15_10-33-44.webp

How can I get around this?
 
You can either use EXTRA.css to overwrite the .selected class style or you can try adding a back slash to the tab link if the URL is not absolute. Something like /media/your-page-segment or /directory/media/your-page-segment
 
I have icon images next to my current tabs and i'd like to add image to my custom Tab.. In the CSS I have this but it doesn't work. What is the .navTab name I need to use for this CSS to work?

#navigation .navTab.custom-tab-1 a.navLink:before {
content: "";
display: inline-block;
margin: -6px 8px -5px 0px;
background-image: url("@imagePath/xenforo/icons/navcalendar.png")!important;
background-repeat: no-repeat;
background-attachment: scroll;
background-color: transparent;
width: 16px;
height: 16px;
}
 
Last edited:
Try this (in EXTRA.css):
Code:
.custom-tab-1 .navLink {
    background: url(@imagePath/xenforo/icons/navcalendar.png) left center no-repeat;
    padding-left: 20px !important;
}
 
Top Bottom