How to code Product catalog in bootstrap

edited April 2015 in Feature Requests
Respected Sir,
I want to create product catalog on my website using bootstrap.
Sir, I have a query, Can you please help me on that?; will be a great help.

I have 100 products of Women Category, it's further bifurcated into four different sub-categories.
Women >> Sandal (25)
>> Purse (25)
>> Kurti (25)
>> T-shirts (25)
Then in Men Category same way,
Men >> Wallet (25)
>> Jeans (25)
>> Shirts (25)
>> Shorts (25)
Men & Women category is in the Navigation bar (Menu Bar).

Now, My question is how can I link products category wise in Menu bar under men or women head?
Code will be great help, Sir.
Can you plz provide solution for this?
Thanking you in advance.

Comments

  • edited 10:18AM
    You will need to dynamically create those menu items and use the "append" parameter for the fuel_nav function. Below is a possible example of what it could look like:
    foreach($categories as $cat) { $category_nav[$cat->name] = array('parent_id' => 'women', 'location' => 'products/women/'.$cat->slug, 'label' => $cat->name); } echo fuel_nav(array('append' => $category_nav));
Sign In or Register to comment.