After creating a top level category, the category itself is part of it - categories

I recently created a new category which should appear on my page. This category should have 3 Items which should be as well displayed directly on the main page. But instead my category is shown on the top page, but I have to select it first to view my 3 Items in it.
To show my 3 Items, I can click on either "Connectivity Management".
It looks as if I had 2 Categories in each other, but that's not the case. I definitely have just one.
I had a look at the servicenow documentation about categories, but there was no hint about my problem.
I am using the FUJI release.
Any Idea how I can remove the bottom category?
I have other top level categories which work just as I wanted them, I compared both and found no difference.

How are you adding this to your page and what type of page are you adding this to?
I've seem something similar happen when adding this to a Homepage such as the ESS Homepage. Is this what you are trying to do?
When selecting to add a Catalog Category to a home page you will have two options, Category Details and Category Items
If you choose Category Details, you see something similar to what you see.
If you instead choose Category Items, you will see the items within the category

Related

How to achieve this layout in .Net Maui?

I have a .Net Maui app for selling some items.
Basically items are organised this way :
Pages
Categories
Items
I need the pages to work like tabbed pages. And inside a page there are categories summarized on the top of the page. And then items inside. And if I scroll to the bottom, the categories are moving to adapt to the current visible items.
Here is an example :
Here the page is Boissons & Eaux and the categories are Jus frais & Smoothies, Jus et néctars ...
And if I scroll to the bottom, the categories scroll to the right like this :
etc.
I know how to create tabbed pages. And for the categories, I'm thinking about the grouping feature of the collection view. However this doesn't seem to summarize categories separately. It just creates a header for each category as per the documentation here.
Does anyone know how to get a layout similar to this please ?
Thanks. Cheers,

Typo3, Multiple News Details & Lists on one page

I want to use the News system extension from Georg Ringer like this:
Multiple News Details & Lists All on one page
the Detail view on top of the "cards" of the List view should show the Detail of the item clicked on
The behavior seems like to allow multiple list but only 1 detail view
Detail View of "Services"
List View of "Services"
------ other stuff
Detail View of "Projects"
List View of "Projects"
------ other stuff
Detail View of "Sectors"
List View of "Sectors"
Has anyone experience with this?
I would change the list view to handle the first news entry with much more information. In Fluid you have access to all needed fields for displaying it like in detail view.
Then, you only need three list views on the page with your special template. No need for a detail view.
In general it's possible what you desire but you've to adjust the detail-view in the plugins statically to a special detail or you always will only be able to display one detail at a moment, no matter which category because news is like probably all TYPO3-extensions not programmed with the ability to transfer parameters for several plugins on a page at once.
Many years ago when extensions still have been programmed fundamentally different I had some similar desires related to other extensions and programmed something which transferred the parameters always related to each plugin on a page, so it was possible to regulate several plugins of the same type on a page separated. Today it will be harder probably to implement something like that.
What you can do is to look in the manual about the AJAX-posibilities of news. There might be still an option to fetch the detail for each of the categories separated, perhaps even on page-load already, but it will be a nifty setup which takes probably some time.

Is there an extension that lists timed-out and/or hidden elements in TYPO3?

If editors frequently work with show / hide dates for pages and content elements, there is an increasing number of outdated, hidden content in the Backend.
For housekeeping, it would be nice to have an extension that lists such not-displayed content, maybe also hidden items.
Is there something?
I'm not aware that there is any extension for this purpose. But you can use the list module for something similar.
Place any kind of content on your "root" page. In the list module, you now see the table "Page Content". Click on the header cell to get only "Page Content" records. In the bottom of the list module, in the search part, perform a search "4 levels down" with an empty string.
You then have all contents from the root page 4 levels down. In the field selector, select the "hidden" field. In the table, click the table head "Hide" twice to have all hidden elements on top.
Then you can bookmark this view. Not exactly what you wanted, but it gives you some kind of overview.
In theory it should be possible for admins with the "DB check -> Full search" tool. See my answer for question typo3: what is the fast way to find which page has certain extension
However, I found out there is a bug which prevents it from working as it's supposed to in TYPO3 4.5.x. I'll update this answer once the bug is fixed.

I want to create a vertically expanding content bar

Actually, I wanted to create a sidebar with 6 items, which show the content in a dropdown format.
For eg, if you click company, the content about company expands downwards, along with other five menu items. If you click any other item, the above one needs to close and this item should expand.
I want something like the sidebar in JsFiddle.net
Seems like what you are talking about is similar to jquery Ui's accordion:
Have a look at the link here to get you started: http://jqueryui.com/accordion/
Also don't forget to include jquery as well.http://jquery.com

How to add custom filter in header in magento

In my magento site,
I have there drop down list in header, I want to search Or navigate product after last drop down item select. drop down are dependent each other (i mean third depends on second, second depends on first) third drop down are attributes values of the second drop down category item.
it should be work like filters. I have create .phtml file and have added these drop down in header. please help me out.
Thanks in Advance
Customise your layered navigation functionality
An example of layered navigation with your problem
You have 3 attributes:- (Category,Color, Manufacaturer) Color is dependent on category and Manufacturer in Color
So when you pass #cat=5 the ajax call will filter out the products. Also filter out the second dropdown according to available products existing color.. Then similarly pass #cat=5&color=23.... so on
This filteration is already done in layered navigation. You just have to custmise your code to use this in dropdown
:)