By iterator on
Hi..
I created a node in which the users are able to upload pictures. It´s a kind of photogallery, so every user has one node to upload pics. After that i created a view to show the pictures. I selected the node row-style. The view looks ok but the problem is that i don´t want to see the node title in the view. Is there a way to hide the node title if i select "row-style: node"?
Comments
Do that in your theme
I don't think there's a way to do that through the Views interface, but it would be easy to do in the theme. Make a copy of node.tpl.php, renaming it to node-your_content_type.tpl.php, and in that template, remove the line that prints out the title. Empty the database cache to refresh the theme, and there you go.
Ok, that was easy :) Thank
Ok, that was easy :)
Thank you, zbricoleur!
No problem :)
No problem :)
The next Problem: Is there a
The next Problem:
Is there a way to show only a few pics from the node? I don´t want to show all the pics, only 10.
Can't tell from the
Can't tell from the information you've provided. Is each image in a separate field, or is it one text field with a bunch of image tags in it, or...?
I created a content type with
I created a content type with a cck image field. The users have the chance to upload as many pictures as they want to. But the view should only show 10 pictures from a user.
Given what you're wanting to
Given what you're wanting to do, I'd say you should switch the row style to fields. That lets you easily exclude the title, and also easily set the number of images you want to display.