Reputation: 1303
I'm not a web designer/coder but a friend had a designer quit on him and is needing some help getting his website up and running.
Website is www.wilfrednewman.com
They are using magento 1.7, blanco theme.
I'm wondering a couple things:
1) How to edit the first item of the menu (Clothing that leads to coming-soon.html). In the CMS Static Blocks he has page-menu defined which is where the other links are generated(bespoke,wedding,about,press,store), but Clothing is not there. I just don't know where to edit Clothing.
2) How do I get a "storefront" view. Just some basic store-front that has the newest products listed? That's what I would want Clothing to link to.
Googling these problems generally brings me the wrong solutions, such as editing the Home button in the Magento Navigation, so I can't find the solution for what I need, so I'm sorry if this is common but I'm just not googling the right thing!
Upvotes: 0
Views: 242
Reputation: 278
To Edit Clothing link,
app/design/frontend/default/blanco/template/catalog/navigation/top.phtml
. I think he had added page-menu here. Kindly check.
If you want to display products in clothing link, Add the below line in CMS Page (coming-soon). Please change the category_id as you want.
{{block type="catalog/product_list" category_id="xx" template="catalog/product/list.phtml"}}
Upvotes: 2