Can’t make product images clickable

try this..

$images .= '<a href="' . get_permalink( $post->ID ) . '">';
if ( has_post_thumbnail() ) {
    $images .= get_the_post_thumbnail( $post->ID, 'shop_catalog' );
}
$images .= '</a>';