Hey,
Is there a way to reverse the order of images in the Easy Slider? I know I can move the images manually, but as there are a lot of images in my slider and I add one regularly, what I’m looking for is a way for the last added image to be the first to show on the page. At the moment the page with the slider on it always opens with the first image I added. I would like to open with the last image I added without having to manually move it to the top of the list.
Hi graphicsplus!
I didn’t test this but try to modify wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow.php. Open up the file and replace:
foreach($this->id_array as $id)
with
$this->id_array = array_reverse($this->id_array);
foreach($this->id_array as $id)
Cheers!
Peter