getgrav / grav-premium-issues

Official Grav Premium Issues repository to report problems or ask questions regarding the Premium products offered.
https://getgrav.org/premium
7 stars 2 forks source link

[instagram-feed] Random order? #424

Open gorbat-o opened 3 months ago

gorbat-o commented 3 months ago

Last version of the plugin.

I am trying to show the last 3 pics posted on instagram. But the order is completely wrong, it took the second pic, a fourth or fifth one and then the 10th for some reason. How do we configure this?

            <div class="social-gallery">
                <div class="row">
                    {% for image in instagram.getInstagramMedia|slice(0,3) %}
                        <div class="col-sm-4">
                            <a href="{{ image.meta.permalink }}" target="_blank">
                                <img class="img-fluid overflow-hidden" src="{{ image.cropZoom(413, 413).url }}"/>
                            </a>
                        </div>
                    {% endfor %}
                </div>
            </div>
rhukster commented 3 months ago

in the past the order has always been timestamp descending fro instagram itself. Perhaps they have made a change in how they send the data now. I'll have to see if we can force a reorder based on the timestamp.