Please navigate to plugins/woocommerce/templates/single-product/content-product.php and find this line
do_action( 'woocommerce_after_shop_loop_item_title' );
?>
</a>
Paste following code after that line:
<?php
global $product;
$author = get_user_by( 'id', $product->post->post_author );
$store_info = dokan_get_store_info( $author->ID );
if ( !empty( $store_info['store_name'] ) ) { ?>
<span class="details">
<?php echo $store_info['price']; ?>
<?php printf( '<a href="%s">%s</a>', dokan_get_store_url( $author->ID ), $author->display_name ); ?>
</span>
<?php } ?>