Hi darwishco. From the theme documentation:
Q: How do I make the homepage slider auto-progress?
A: In /inc/featured.php change slideshow: false to true with a child theme.
Here is the section of code you need to modify:
Query('#flexslider-featured').flexslider({
animation: "slide",
useCSS: false, // Fix iPad flickering issue
slideshow: false, <--- change this to true
directionNav: true,
controlNav: true,
pauseOnHover: true,
slideshowSpeed: 7000,
animationSpeed: 400,
smoothHeight: true,
touch: false
});