I have the same issue, if you add different variations they will be listed separately in whishlist but the image is wrong, it represents configurable product rather than specific variation
Internal ticket MAGETWO-8709 which tracks this GitHub issue, is in our issue backlog.
Thanks
If someone is interesting to a workaround, I suggest creating a plugin for
MagentoWishlistBlockCustomerWishlistItemColumnImage
and write something like:
public function aroundGetImage(
Image $subject,
\Closure $proceed,
Product $product,
$imageId,
$attributes
) {
if ($product->getTypeId() == 'configurable')
{
$simpleProduct = $this->productRepository->get($product->getSku());
$url = $this->config->getBaseMediaUrl() . $simpleProduct->getImage();
$block = $proceed($product, $imageId, $attributes);
$block->setImageUrl($url);
return $block;
}
return $proceed($product, $imageId, $attributes);
}
@anebi, thank you for your report.
We've created internal ticket(s) MAGETWO-8709 to track progress on the issue.
Working on this.
Hi @anebi. Thank you for your report.
The issue has been fixed in magento-engcom/magento2ce#1031 by @RomaKis in 2.2-develop branch
Related commit(s):
The fix will be available with the upcoming 2.2.5 release.
Note that this fix is different on 2.3. Wishlist should obey cart image setting from config. Fix will be backported to 2.2 future releases
It was fixed in new 2.2.6 release version, Please check it once from here pull/15477.