Wednesday 14 May 2003 3:47:32 am
Try other attributes for that class. This code will show all attributes of $content_version: {$content_version|attribute(show,1)}
You may notice a attribute named 'data_map'. This holds the attributes for your class 2, so: {$content_version.data_map|attribute(show,1)}
will show your attributes and values. This is a very helpful debugging method :) A better way to display attributes is through: {attribute_view_gui attribute=$content_version.data_map.name} This will render your attribute using standard ez code for whatever datatype the attribute happens to be. Text is easy to display but files, images, etc?
|