Tuesday 26 April 2005 12:34:19 am
Hi, I'm trying to make analpha pagination by giving the choice in admin via a check box (attribut name "mode_lexique") I added to folder.tpl.
{section show=$node.data_map.mode_lexique.data_int}
<div class="content-view-children">
{section loop=fetch('content','list', hash( parent_node_id, 1043 ,
attribute_filter, array( 'or', array( '189', '>=', 'T') )) ) }
<a href={$:item.url_alias|ezurl}>{$:item.name}</a><br>
{/section}
</div>
{section-else}
{*Here is the standard code for fetching children with the include of google.tpl*}
{/section}
First I'm trying to have a result on a node (1043) with a attribut (189) and just one letter (T) , but I'll try to generalise this to the whole site. My problem here is result because '=' doesn't work (nothing is printed), only '>='. What's wrong here ? Laurent.
|