Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone point me to a good Drupal Photo Gallery tutorial or book. I am trying to create a photo gallery in a grid view. However, I do not want the titles, etc. to be displayed with the photos. Also, I want to place a border around the photos to make them stand out a bit.

I am not that well versed in PHP so I want the solution to be handled completely with modules and as little coding as possible.

share|improve this question
You may want to try this question on Serverfault or superuser. SO is a programming site and you are trying to have a solution without coding. – Jeremy French Jan 6 '10 at 10:17
The OP does not ask for a solution without coding, but as little coding as possible. He is obviously still learning php, but imho that does it mean that the question does not belong here. I think all coders try to re-use as much existing code as possible in order to be more efficient. – marcvangend Jan 6 '10 at 12:41
drupal.org/project/image - the image module has a photo gallery built in that might help get something up quickly. – bkildow Jan 6 '10 at 13:11
2  
@bkildow: True, but the general opinion seems to be that the combination of cck+imagefield+imagecache is the way forward and that image module is going away - especially since CCK will be in core in Drupal 7. See this thread: groups.drupal.org/node/26085. – marcvangend Jan 6 '10 at 14:44

closed as not constructive by Don Roby, bmargulies, CharlesB, hammar, ЯegDwight Sep 2 '12 at 17:15

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 3 down vote accepted

Here's a module that puts together the Views/CCK/Imagefield configuration for a gallery: http://drupal.org/project/views_gallery

What's great about this approach is that you then end up with a cck/views-based gallery and can easily tweak it to anything you want (like not wanting to display titles, having images pop up in a lightbox with a caption, etc.) and reuse the display of images elsewhere easily.

share|improve this answer

You can build your own photo gallery using Drupal modules like cck, views, imagefield and imagecache. Just search Google or Drupal.org, there are plenty of how-to's out there.

Here is a recent tutorial video: http://learnbythedrop.com/drop/148

share|improve this answer

If you are interested in learning how to use Drupal, with little/no php coding, you should take a look at Using Drupal by the Lullabot team. It covers a lot of different cases, one of them is how you can build an image gallery like you describe.

share|improve this answer
Chapter 7 contains complete instructions to build a photo gallery. – keithm Jan 6 '10 at 13:24

Here's a tutorial that really helped me when I was doing the same thing for the first time: http://www.primalmedia.com/blog/building-better-drupal-photo-gallery

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.