Hi Justin,
Open up functions.php and go to the line #697 there is a function called “get_posts_slider” that is responsible for the post slider, so if you hide the captions means no problem, that makes it easier ๐
Go to line #766 you see something like this inside that function.
$output .= '<img src="'.$image[0].'" width="'.$image[1].'" height="'.$image[2].'" alt="'.$post_title.'" />';
change that to like this
$output .= '<a class="read-more" href="'.$post_permalink.'"><img src="'.$image[0].'" width="'.$image[1].'" height="'.$image[2].'" alt="'.$post_title.'" /></a>';
Let me know, what you got.
Thanks,
laranz.