How to code Product catalog in bootstrap
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
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));