badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Themehorse Services Widget Icons- Rollover Colour

#26590

Hi Dean,

This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.
To add link in service icon 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!