Hi,
I can not access your WP Dashboard.
In this case, you can open the wp-content/plugins/s5-masonry/tmpl/index.php file then override it with the following code to add the link for the image.
Also, to hide the title or content, you can configure from the Widget option.
<?php
$item_heading = $settings['item_heading']?$settings['item_heading']:'h4';
?>
<div class="s5_masonwrapinner <?php $images = json_decode($item->images);
if($images->image_intro && $settings['image'] == 1){ }else {?>noimage<?php } ?>">
<?php $images = json_decode($item->images);
if($images->image_intro && $settings['image'] == 1){ ?>
<div class="s5_masonry_img_wrap">
<?php if ($settings['link_titles'] && $item->link != '') : ?>
<a href="<?php echo $item->link;?>">
<img alt="" src="<?php echo $images->image_intro[0]; ?>" />
</a>
<?php endif; ?>
</div>
<?php } ?>
<?php if($settings['showonhover'] == 2){ ?>
<?php if ($settings['showcategory']) : ?>
<div class="s5_masoncat">
<?php echo $item->category; ?>
</div>
<?php endif; ?>
<?php if ($settings['showdate']) : ?>
<div class="s5_masondate">
<?php echo get_the_date( get_option( 'date_format' ), $item->ID ); ?>
</div>
<?php endif; ?>
<?php } ?>
<div class="s5_mason_abi_wrap <?php $images = json_decode($item->images);
if($images->image_intro && $settings['image'] == 1){ }else {?>noimage<?php } ?>">
<div class="s5_mason_abi_wrap_inner <?php $images = json_decode($item->images);
if($images->image_intro && $settings['image'] == 1){ }else {?>noimage<?php } ?>">
<?php if ($settings['item_title']) : ?>
<?php if($settings['showonhover'] == 1 || $settings['showonhover'] == 0){ ?>
<?php if ($settings['showcategory']) : ?>
<div class="s5_masoncat">
<?php echo $item->category; ?>
</div>
<?php endif; ?>
<?php if ($settings['showdate']) : ?>
<div class="s5_masondate">
<?php echo get_the_date( get_option( 'date_format' ), $item->ID ); ?>
</div>
<?php endif; ?>
<?php } ?>
<<?php echo $item_heading; ?> class="s5_masonry_articletitle <?php echo $settings['class']; ?>">
<?php if ($settings['link_titles'] && $item->link != '') : ?>
<a href="<?php echo $item->link;?>">
<?php echo $item->title;?></a>
<?php else : ?>
<?php echo $item->title; ?>
<?php endif; ?>
</<?php echo $item_heading; ?>>
<?php endif; ?>
<?php // echo $item->beforeDisplayContent; ?>
<?php if ($settings['introtext']) : ?>
<div class="s5_mason_it_wrap <?php $images = json_decode($item->images);
if($images->image_intro && $settings['image'] == 1){ }else {?>noimage<?php } ?>">
<?php echo $item->introtext; ?>
</div>
<?php endif; ?>
<?php if (isset($item->link) && $settings['readmore'] === '1' ) :
echo '<p class="readmore s5masonrymod"><a href="'.$item->link.'">'.$item->linkText.'</a></p>';
endif; ?>
</div>
</div>
</div>