Resource icon

[J] Forum List Tabs 1.3.0

No permission to download

JustinHawk

Well-known member
JustinHawk submitted a new resource:

[J] Forum List Tabs - This add-on adds the option to add forum categories into tabs in the main forum list.

Description:

This add-on adds the option to add forum/categories into tabs in the main forum list and is purely a CSS & template modification based addon. Incase the addon doesn't work with your theme just let me know I will help you sort it out :)

Note: By default, every category/forum comes under tab id zero. So all category and forums come under tab having id 0

Screenshots:

Options page

View attachment 88

Category Edit Page...

Read more about this resource...
 
any chance to have them auto cycle? used to have a functionality like that we kind of miss...so it sits on each tab for X seconds, then auto switches to the next...
 
I think I am using default XenForo button css classes, if that's not the case I will add styling later into the addon.
I am actually not sure. It just looks off from the other buttons and the rest of the style.

What I've also noticed is that no matter what node you are currently in, if you go back, it will automatically go to tab 0, which makes it a bit annoying.

To give you an idea of what I mean:

You have the following tabs:
0) Official XenForo add-ons
1) XenForo resources and add-ons
2) Development help

And we are in the current navigation tree (not sure how it's called):
Home > Forums > XenForo resources and add-ons > Resource and add-on releases [2.x] > Add-on releases [2.x] > [J] Forum List Tabs

If we then press back to Add-on releases [2.x], making it:
Home > Forums > XenForo resources and add-ons > Resource and add-on releases [2.x] > Add-on releases [2.x]

However, it will just go back all the way to tab 0:
Home > Forums > Official XenForo add-ons

Which makes this add-on quite difficult to use. Even though the idea of it is absolutely amazing.

If you are in tab 2 (Development help) and refresh the page, you get set back to tab 0 (Official XenForo add-ons).
 
Would it not be posible to add a option when you click the 'home' or 'forums' button or the logo it shows again the complete forum ?
 
How can we do it in floating Tab shape?
Not sure if its possible or not but you will need to write CSS for this and possibly for every tab as they are not in any parent division as it completely CSS based add-on.

Would it not be posible to add a option when you click the 'home' or 'forums' button or the logo it shows again the complete forum ?
Okay so you want that it to not to display the last tab the user was viewing when clicked on 'forums' or 'home' button right ?
 
This is very usefull, thanks for this!
Question: In one of the examples, you are using a font awesome icon for the default tab.
How did you do that?

1631282775482.webp
 
That worked, thanks!
Would it be possible to somehow show all nodes on tab 0, even if they are already on antoher tab?
I would like the 'home / default' to show eveything, and use the other tabs to display specific categories.
 
That worked, thanks!
Would it be possible to somehow show all nodes on tab 0, even if they are already on antoher tab?
I would like the 'home / default' to show eveything, and use the other tabs to display specific categories.
Well it's not possible as of now through options but can be done using CSS.
CSS:
#tab0:checked ~ [class^="block"] {
    display: block;
}
 
Top Bottom