Hi,
Every time I add images to the slideshow, they appear at the end. I need newer images to appear at the start, how can i do this?
maybe changing the ORDER BY in the query... what php would it be?
thanks!
Hi,
Every time I add images to the slideshow, they appear at the end. I need newer images to appear at the start, how can i do this?
maybe changing the ORDER BY in the query... what php would it be?
thanks!
Hi!
Try to replace following code in includes/helper-slideshow.php:
$this->slides = avia_post_meta($this->post_id, 'slideshow');
with:
$this->slides = avia_post_meta($this->post_id, 'slideshow');
if( is_array($this->slides) ){
$this->slides = array_reverse($this->slides);
}
Regards,
Peter
This topic has been closed to new replies.