Monday 02 February 2004 7:28:53 am
There are two ways of showing content:
1) Showing it using the attribute's view template 2) Showing it directly You're doing number one. What happens there is that eZ publish inserts another template where you call the "attribute_view_gui" function. Instead, you could do something like this: "$node.object.data_map.story_intro.content" This will return the string that is stored in that attribute. Now, you could simply pipe that string into whatever operator you want. See? (PS: If story_intro is XML text then you would have to do append a ".content.output.output_text" to the attribute. If story_intro is only text/text-line then .content is enough.) Cheers.. Balazs
|