Hello all,<br><br><br>I require a simple pagelist which skips the FIRST entry. I thought &quot;no problem, let&#39;s do something like this&quot;:<br><br>(:if ! equal {&lt;$Group}:)<br>do template stuff here<br>(:if:)<br><br>
And obviously, that works. BUT is there an alternative way? Because actually, that does not work since I have a couple of other if directives inside that pagelist template and it messes everything up. I do not like nesting if loops at all - this can get very complicated to read after a while. There is no &quot;start=x&quot; option present, but the Cookbook offers some pagelist enhancements but I don&#39;t like to install all those extra&#39;s, shouldn&#39;t this be something simple to do?
<br><br>My template:<br><br>[[#recententries]]<br>(:if equal 4 {$$PageCount}:)<br>&lt;div id=&quot;hiddenentries&quot; style=&quot;display:none;&quot;&gt;<br>(:if:)<br>blabla print some stuff in here.<br>(:if equal 8 {$$PageCount}:)
<br>&lt;/div&gt;<br>(:if:)<br>[[#recententriesend]]<br><br>As you can see, I want the last 4 items to be inside the hiddenentries div. That works, when the pagelist has count=8, like expected. But I can&#39;t seem to add the &quot;(:if ! equal {&lt;$Group}:)&quot; test in the beginning as it ignores all other if directives. Again: if this also can be done without ifs, the better: I simply want to skip the first pagelist cycle.
<br><br><br><br>Thank you!<br>- Wouter<br><br>