Jacks JNK
|
Wednesday 20 August 2008 2:39:02 am
Hello, I have a problem, indeed, I added a field "category" in the class article and I wish to display the list of the categories. I made the following fetch but without success:
{def $tope=fetch( content, list, hash(parent_node_id,160,
class_filter_type, 'include',
class_filter_array, array( 'article' )) ) }
{foreach $tope as $uni}
{$uni.categorie}
{/foreach}
Skype : jacks_ngala
|
Ivo Lukac
|
Wednesday 20 August 2008 3:24:03 am
Try it like this:
{def $tope=fetch( content, list, hash(parent_node_id,160,
class_filter_type, 'include',
class_filter_array, array( 'article' )) ) }
{foreach $tope as $uni}
{attribute_view_gui attribute=$uni.data_map.categorie}
{/foreach}
http://www.linkedin.com/in/ivolukac
http://www.netgen.hr/eng/blog
http://twitter.com/ilukac
|
Jacks JNK
|
Wednesday 20 August 2008 5:44:22 am
hello, yes that works well but only I want to have the name of the category once and being able to brought back me on all good of the category. with what you have give to me, I receive the name of the category in proportion to numbers them of times that she/it is called in the articles.
Skype : jacks_ngala
|
Ivo Lukac
|
Thursday 21 August 2008 9:15:47 am
Hello again,
You didn't mention what kind of datatype you are using for category, I presume "selection". Solution is a bit complicated, you need to make 2 links for each category with view_parameters appended and than use attribute_filter on the category datatype. But there is much more easier way. Create two sub folders for each category under your main folder. Place articles in sub folder by category and that's it. And you don't even need the category datatype.
http://www.linkedin.com/in/ivolukac
http://www.netgen.hr/eng/blog
http://twitter.com/ilukac
|