0
votes

I'm using Drupal 6.20, Views 2 and Views attach module to append few view displays to a full node view. Is there some way to reorder the attached views? The views should still be grouped together (ie. I do not want to insert any other CCK field between them), but I want to display them in different order than that they automatically appear in.

2

2 Answers

0
votes

There's no easy way to do this through the GUI as Views Attach just displays the attachments in the order they were created.

You need to export the View to code (open the view, under "Export" tab) and manually move the attachments into the required order. You may need to update the attachment number too (ie. attachment_2 becomes attachment_1).

Re-import the View using "Import" - either under a new name or by deleting the old view before you run Import.

0
votes

Take a look at Views 3.x which offers a UI to reordering displays. I just attached some screenshots at a similar question on SO.