Another issue.
E2G outputs unwanted html tags which are hardcoded in the _gallery function in e2g.snippet.class.php. I know that it’s for pagination, but this is not always needed. Now I need to output just a plain XML feed for my Flash application. I’m using only two templates: &tpl and &thumb_tpl. I want to get XML like this:
<gallery>
<image source="assets/images/gallery/_thumbnails/image1_140x140.jpg" title="image 01"/>
<image source="assets/images/gallery/_thumbnails/image2_140x140.jpg" title="image 02"/>
</gallery>
But I’ve got:
<gallery>
<div class="e2g"></tr><tr>
<image source="assets/images/gallery/_thumbnails/image1_140x140.jpg" title="image 01" />
<image source="assets/images/gallery/_thumbnails/image2_140x140.jpg" title="image 02"/>
</div>
</gallery>
->note that </tr><tr> !! I’m using &grid=`css`
I can’t get rid of that tags without changing the code.
We should give the users option if they want to use pagination. Parameter like &pagination=0/1 should do the trick.