Magento Navigation like Zalando - module

Does anybody know if there is a module for Magento for the navigation like Zalando nl has it. They make a separation in Home, Women, Men, Children and when you click at men you have the second layer of navigation in a line under the three main categories. Would you say that we should do this with seperate stores (men, women, children) or with one root category with and then seperate it in to three main categories with subcategories.
Let me know if you know such a module.
Thanks

Related

React Native. How to render dynamic catalog's menu (React navigation)?

Lets imagine, that we have some catalog, let it be the goods catalog.
You have top level categories and many subcategories for them and so on deeper. The whole menu can be of any deep.
Of course I don't want to hardcode this catalog, I want to load its structure from a remote server (REST API for instance), so that I could change it any time wothout posting changes to apps (App Store and Play Market). I am using React-navigation (if it makes any sense). How it is usually done?
(1) Should I somehow create one page and pass there some parameters, or (2) should I create many distinct pages.
In the first case (1) I can't even imagine, how can I pass new
parameters to the same page again and again in such a way that each time
there would be a new title in header of this page and a new submenu
structure to be displayed.
The second way (2) seems rather complex to me and is not the best
idea... I suppose.
What are best practices?

Show Prestashop Layered Navigation Block and All Products on Home Page

I am creating an e-commerce website on the platform of prestashop. I tried various ways to to show the product filters i.e. Layered Navigation Block to appear on the home page. How can I do this ? I'm using the default theme of Prestashop.
Also, on the home page, only a few products are being displayed. For Example, only the popular and the best seller products are being displayed. Instead, I wish to display all the products on the home page. How can I do this ?
You can try to use "Home featured products" and set a necessary number of products to display in it in order to show more products on your homepage. It is the simplest way to solve your requirements with products, in another case you need to use some third-party modules to do it. What about the second point, you can't use default Layered Navigation Module outside the Category pages so you also need a third-party module to do this or need to make some development to the module.

Adding two navigation items to one main menu

I'm new to shopify and customizing an existing theme. I was wondering how to do the following.
I have two navigation items (in navigation section of admin):
COLLECTIONS
Men
Women
Kids
-and-
INSPIRATIONS
Casual
Vacation
Weekend
Business
Currently I have two items in my main menu corresponding to COLLECTIONS and INSPIRATIONS (with corresponding dropdowns). I was wondering how to put them both under one main item
SHOP--------------------------------------
COLLECTIONS INSPIRATIONS
Men Casual
Women Business
...
Thanks in advance
Julia
What you are talking about is called "Link Lists" in Shopify. This is what you need to do
Go to Admin -> Navigation and edit menu of "Main Menu"
Add a single item "Shop" and select "All Collections" as the link
Go back to "Navigation" and create a new menu "Shop"
Add two items "Collections" and "Inspirations"
Now you have linked "Collections" and "Inspirations" menu to a parent menu "Shop"
Note: The title of the items inside a menu should always be the same as that of the menu you want to link together.
Refer to this for more details: Create a drop-down menu on my storefront
Next comes displaying submenus inside the menu. Shopify default theme doesn't have this feature out of the box. You can refer to this Shopify thread for implementation: Multi-level menus in Shopify. It is fairly straightforward.

prestashop layered navigation block

normally layered navigation block is only displayed on a few pages like category page, search pages. However I want to show it in the "manufacturer" page/controller. If someone clicks the "manufacturer" menu to show up all the manufacturers, I want to show the "layered navigation" on the left column of the manufaturer controller.
Does someone know how to do that ?
I am using prestashop 1.5.6.2 and a premium responsive 3 column theme.
I would appreciate any help. Thanks.
I want update this topic because now the addon to handle filtering on manufacturer product pages is available on official prestashop addons store and works perfectly :
Download blocklayeredmanufacturer module here
Best Regards

Dynamic Navigation in a XAML Windows Store App

I’m just looking for a sanity check before I go down this road with my Windows Store App.
In the app, I am looking to have a navigation model which involves the following:
All users shown the initial page, and are asked to make a section of Items from a list before tapping continue.
Each Item has a group of pages associated with it – could be 2,3, whatever.
The user is then presented the pages in the order that they are associated with for each Item and in the order by which they selected the Items.
For example, say the user selects Items 2 & 3.
Item 2 has PageA, PageB, PageC associated with it
Item 3 has PageB, PageD, PageA associated with it.
The user journey for the App would be
Selection -> PageA -> PageB -> PageC -> PageB -> PageD -> PageA -> End
The approach I am thinking of going with involves a “UserService” which is persistent throughout the app and stores a list of the Items the user has selected (in order)
I would then have a “PagePlayer” page which would act as a container for the pages to be displayed and this would be loaded after the user is finished with the Selection.
The player would then display all the pages in order based on the Items that were saved in the UserService.
I personally don’t want to go down this road because I know that having Frames displaying Pages etc is generally a bad idea, it could ruin the navigation history etc.
Which pages are associated with each item I would have saved to a local file of some sort and have this loaded when a new Item is set to be displayed.
The number of items are “hard coded” and have IDs associated with them.
I am familiar with Prism for WPF but unfortunately the recently released Prism for Windows Runtime does not support modularity for using a composite approach.
Apologies for general-ness of this question, I couldn’t think of another way of asking it.
Any help would be greatly appreciated!