Add or Upload Files list
2 posts by 2 authors in: Forums > CMS Builder
Last Post: December 16, 2016 (RSS)
Hi, I have got an upload area for PDF's, so you can just add more PDF's to the list, I need to change it so that when you upload a new PDF it goes to the top of the list and not the bottom and then to display in that order on the page, it is a single record too.
By Dave - December 16, 2016
Hi MercerDesign,
There's no built-in support for that. But what you could do is add this code in your viewer files to have the uploads show in reverse order:
Change:
<?php foreach ($yourSection['upload'] as $index => $upload): ?>
To:
<?php foreach (array_reverse($yourSection['upload']) as $index => $upload): ?>
Let me know if that works for you!
interactivetools.com