I have a very simple thing I need to get right, but the solution eludes me. I have a page template with a left sidebar and a content area.
I created a CCK Content type that is used for all Standard Pages as I call them - it has one node reference field I use to link to some node that defines the left sidebar content, and the content is just a title/body combo that gets rendered to the content region. This way I can reuse a sidebar for multiple pages. So basically every web page in my system is a node that is an instance of this node type.
Problem is I want to create a new web page that also uses this same sidebar node reference, but instead of the Title/Body fields I want to reference a view/block. The view is just a listing of all entries in a certain content type.
Problem is... I cannot go up to Drupal 6 - which does have a CCK View reference and Block reference module. So how do I implement this?
Comments
There is a view field for
There is a view field for CCK in Drupal 5, see the viewfield module.
Thanks got it!
Thanks got it!