Seeing as there is no index gt n function, I created a snippet to return the output row number
----------------
add_shortcode( 'loop', 'loop');
function loop( ){
global $loop_n;
if ( !isset( $loop_n ) ) {
$loop_n = 0;
return $loop_n;
}
$loop_n++;
return $loop_n;
};
which works fine as [loop] after <wpv-loop> in my view (outputs the row number)
however, the following does not work (the first conditional does not output vvv)
-----------------
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
<wpv-loop>
[wpv-item index=0]
[wpv-item index=other][loop]
[wpv-conditional if="( '[loop]' gt '0') "] vvv [/wpv-conditional]
[wpv-conditional if="( $(wpcf-range) gt '0') "]
------------
thanks for your help