Hi, For a travel company website, they need a feature wherein, for each travelers group that starts on a trip, the travel company manager should be able to create a node with the itinerary. During the trip, the travelers should be able to upload images (to be shown in the trip specific album). Also the travelers should be able enter messages during the trip (for the family back home).
I have created 3 content types - trip_itinerary, trip_photos, trip_messages. I am using a taxonomy vocabulary and allow the manager to create a new term for each trip in the trip_itinerary content type. Similarly, the travelers should select the taxonomy term while uploading images and also while posting messages through those content types.
Now, I need to create a page that lists the various trips with the columns - Trip Name (taxonomy term), Trip Itinerary (link to itinerary node), Trip Gallery (link to trip album created thru views), and Trip messages (link to messages node).
In Views, I have set the Taxonomy Vocabulary as the Filter and set the Node: Link under Fields.
In views, how do i get the node: link for each of these node types considering that all of them share the same taxonomy term? Right now, views prints each link in different rows, where as i want all of them in the same row. Any help much appreciated.
Comments
Comment #1
sri20198 commentedGot it working with Node Relativity module. Though its a partial solution in my case. I have 1 parent node and 2 child nodes under it. When I try to create a list with Views, instead of getting Parent | Child1 | Child2 in a single table row, I get Parent | Child1 as a separate row and Parent | Child2 as another row.
Comment #2
iamjon commentedThanks for posting your solution!