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: Service Icon Links

#26287

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!