You previously helped me randomize the order of the slides, and it works great on the home page, but now that I am building the other pages, I get this on all pages:
"Warning: shuffle() expects parameter 1 to be array, boolean given in /home/content/73/8802073/html/imt/wp-content/themes/choices/includes/helper-slideshow.php on line 36"
This is what I added to the helper-slideshow.php:
$this->slides = avia_post_meta($this->post_id, 'slideshow');
with:
$this->slides = avia_post_meta($this->post_id, 'slideshow');
shuffle($this->slides);














