Hi agruenke
Yes! You can make the service and product image clickable.
You need to edit same line of code and add hard code URl.
Find index-service.php and index-product.php files.In theme directory folder.
In index-product.php find given code.
<img src=”<?php echo $products[‘product1_image’]; ?>” alt=”Spa Featture” class=”product_flex_img” />
Add your hard code url with this image tab. Like this type.
<a href="YOUR URL">
<img src="<?php echo $products['product1_image']; ?>" alt="Spa Featture" class="product_flex_img" />
</a>
In index-service.php find a given code.
<img src=”<?php echo $service_data[‘service1_image’]; ?>” alt=”Spa Featture” class=”home_service_img” />
Add your hard code url with this image tab. Like this type.
<a href="YOUR URL">
<img src="<?php echo $service_data['service1_image']; ?>" alt="Spa Featture" class="home_service_img" />
</a>
Note-: Add your url all reaming image tag according to you in both files.
It will resolved your problem.
Thanks