July 9, 2015 at 5:10 am
#26287
Theme Horse Support Team
Keymaster
Hi Chama,
go to the theme folder -> inc ->widgets -> interface_widgets.php. Can you see this code on line no 329 to 333
<?php
if ( has_post_thumbnail() ) {
echo'<div class="service-icon">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</div>'; }
?>
Replace above code with this below code
<?php
if ( has_post_thumbnail() ) {
echo'<div class="service-icon"><a href="'.get_permalink() .'">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</a></div>';
}
?>
Now you can have a link in services icon. Just make a custom service widgets as i have told before in your child theme to avoid you customized code lost.
Thank you!