| Douglas Johnson
                                                                                                                             | Wednesday 16 July 2003 2:36:07 pm 
                                                                 left_list=fetch(content,tree,hash(parent_node_id,$module_result.node_id,limit,23,sort_by,array(modified,true()),class_filter_type,include,class_filter_array,array(37)))} 37 is the class ID of the new class. | 
                                                                                                    
                                                        | George Amaro
                                                                                                                             | Tuesday 23 September 2003 7:05:01 am 
                                                                 
I had the same problem, using 3.2...After a new class was created from Article copy (of course changing its name), and using the following fetch:
 
{let news_list=	fetch( 	content,tree,
 hash(
 parent_node_id, 55,
 limit, 1,
 sort_by, array( published, false() ),
 class_filter_type, include,
 class_filter_array, array( 18 )
 )
 )
 }
 
 			{section name=News loop=$news_list}<tr>
 <td>
 {node_view_gui view=menu content_node=$News:item}
 </td>
 </tr>
 {/section}
 {section name=News loop=$news_list}
 <tr>
 <t">
 <p class="readmore"><a href={concat("/content/view/full/", $News:item.node_id, "/")|ezurl}>{$News:item.name|wash}</a></p>
 </td>
 </tr>
 {/section}
  			{/let}  Changing the class_filter to any class_ID other than the classes I've made it works well... Any idea?? |