Hi there,
You need to edit /inc/slider.php using a child theme, and then find the following piece of code:
<div class="slide">
<?php if ( has_post_thumbnail() ) : ?>
<?php the_post_thumbnail( 'oria-carousel' ); ?>
<?php else : ?>
<?php echo '<img src="' . get_stylesheet_directory_uri() . '/images/placeholder.png"/>'; ?>
<?php endif; ?>
<?php the_title( sprintf( '<h3 class="slide-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
</div>
with the following:
<div class="slide">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark"><?php the_post_thumbnail( 'oria-carousel' ); ?></a>
<?php else : ?>
<a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark"><?php echo '<img src="' . get_stylesheet_directory_uri() . '/images/placeholder.png"/>'; ?></a>
<?php endif; ?>
<?php the_title( sprintf( '<h3 class="slide-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
</div>
Let us know if it works. ??