Hi,
We are using a modern slider carousel to display text slides. How would I set the newly added slides to display first?
Hi,
We are using a modern slider carousel to display text slides. How would I set the newly added slides to display first?
Hi @Torah541,
Thanks for reaching out.
Most of the Slider shows the data from the JSON and you need to add the new values at the top of the JSON instead of adding that into the end.
[
{
"name" : "Kari Rasmussen",
"image" : "<image url>",
"accent" : "#ea4335"
},
{
"name" : "Azul Baldwin",
"image" : "<image url>",
"accent" : "#1876f2"
},
]
As an example JSON you need to add your new data before Kari Rasmussen data and would look like the following.
[
{
"name" : "Newly Added",
"image" : "<image url>",
"accent" : "#ea4335"
},
{
"name" : "Kari Rasmussen",
"image" : "<image url>",
"accent" : "#ea4335"
},
{
"name" : "Azul Baldwin",
"image" : "<image url>",
"accent" : "#1876f2"
},
]
Hope it helps.
Thanks
We aren’t using JSON…
Is there any other way?
Hi @Torah541,
If you are using the Query Builder or Query String data with the Looper Provider, you may need to sort the data descending order so the last inserted data comes first.
Thanks
ummm, where not using the looper. We entered all the slides manually.
Hello @Torah541,
Regretfully there is no option to set the slide order at the moment. It would require custom development. I would suggest you please contact a developer who can assist you with your concern or you can subscribe to One where customization questions are answered. Please note we don’t provide custom development support. It is out of the support scope.
Thanks for understanding
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.