You can remove the links from the slider images with a child theme. Here are some guides in case you haven’t made one before:
http://codex.wordpress.org/Child_Themes
http://op111.net/53/
http://vimeo.com/39023468
Once your child theme is set up, make a copy of the file content-featured.php from your theme folder and place it in the child theme folder.
Next, remove these lines of code from the copy in your child theme folder:
line 20:
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
line 26:
</a>
Activate your child theme and the slider images should no longer be clickable.
Let me know how it goes.