Hi Chris,
In the meantime I can provide you with a fix to get this working for you.
You will want to open a file called product-image.php
This is located in woocommerce/single-product/product-image.php
Locate line 107 and below that add this:
$image_meta = sf_get_attachment_meta( $attachment_id );
$image_caption = '';
if ( isset($image_meta) ) {
$image_caption = esc_attr( $image_meta['caption'] );
}
Thanks,
David.