Site icon Hip-Hop Website Design and Development

Find out how to get the WooCommercer product variation picture

I’m constructing a WooCommerce theme however I’m having hassle getting the featured picture to vary when the person selects a product variation.

I’ve set completely different featured photos for every variation on the backend, and that is the operate I’m utilizing to name the product’s featured picture.

What ought to I add to this operate with a purpose to seize the variation’s featured picture as an alternative of the general product featured picture?

operate show_featured_image() {
  international $product;
  echo '<div class="product_fetured_image">';
    echo '<div class="feautred_image"><img src="' . get_the_post_thumbnail_url() . '"></div>';
  echo '</div>';
}