By essenzzo on
Dear sir,
Please visit this site http://www.ilovebolly.com/ This site is made in drupal.
It has many categories . Lets consider movies category. and inside movies.. list of movies.
For every movie there is one page. and on that page they have many things like...
* Overview
* Plot
* Reviews
* Cast
* Production Details
* Songs
* News
* Trivia
* Quotes
* Suggested Movies
* Fan Club
* Comments
* Photo Gallery
* Video Gallery
All these links are updated by users ...
I just want to know how this can be done. Please help me.
(here is the link of movie page)
Comments
Pretty Standard Stuff....
essenzzo,
This is pretty standard Drupal stuff.. If you use Firebug (a FireFox add on) you can get a better idea about how they did it. The home page appears to have been made using a View (Views Module). Looking at the movies section, I imagine that that they used CCK, and created a "Movie" content Type. Then added custom fields. The Genre is done using Taxonomy (a Core Module). The page that is presented to you when you click on a specific movie is presented using a few different modules that include Views, QuickTabs, and Panels.
This is all pretty standard Drupal stuff.. Setup a test site for your self and expirement with the following modules:
CCK
Views
Panels
Quick Tabs
Five Star
etc..
and you should be able to come up with a page that is similar to the one shown on ilovebolly.com
Still a query
Thanks for your reply. My many questions are resolved.
I am still puzzled.. how they created menu in left had side of movie page. and associated them with the current movie.
# Overview
# Plot
# Reviews
# Cast
# Production Details
# Songs
# News
# Trivia
# Quotes
# Suggested Movies
# Fan Club
# Comments
# Photo Gallery
# Video Gallery
How to make them updated by users.
Thanks
Create a new menu type
Create a new menu type (sitename/admin/build/menu/add) and list above mentioned items as menu items under that. Use 'menu_block' to create a block.
Hope it helps.