im new on drupal and want to make a menu for a restaurant showing all the dishes with photos, prices and descriptions in categories (japanese food, chinese food etc).
i wonder if there are some great tutorials or modules for this?
i cant find any on the web.
thanks you
Create a new content type called
dish. Use CCK to add the following fields to yourdishcontent type:Create a new vocabulary called
foodcategories. Add all of your “japanese food”, “chinese food”, “italian food” etc to this, and allow the node typedish.Create a View of type node. Filter the view to node type
dish. Select the fields food_photo, food_price and food_description, node title and taxonomy term from the vocabularyfoodcategories. Group by the taxonomy term field. Order by the node title field ascending or by price, whatever.That’s as much of the answer as I can be bothered typing out.