I figured out that you can turn on php, and use php slabs within your templates, and figured out how to use operators on integers like a {count} result to get the +1 to the number of entries….
But I’ve struggled to be able to isolate the final entry and still use the count result to give the number I needed (since I can’t rely on entry_ids as there will be a lot of entries all over), and this number will quickly become useless.
After trying a bunch of silly javascript and jqery reliant methods, I figured out that you can also use the following to filter by count results:
{if count == total_results} entry data {/if}
So In the following manner, I filter out any entry that isn’t the last entry, after calling it to get the number of entries in the channel which match the parameters (this is in order to ONLY get the last number, not a list of numbers for each entry in the channel) and then I use a good old + 1 to get the number I need.
<div class="item_number">
{exp:channel:entries channel="trades" sort="desc"}
{if count == total_results} <?php echo( {count} +1 ); ?> {/if}
{/exp:channel:entries}
</div>
voila… so simple, right o,O !!
LOL I’m sure there’s a better and more elegant / sensible way to do this, but I hope it’s helpful to someone, nonetheless 😊