Hi,
Thanks for contacting us and choosing our product!
That seems this issue happen when you don’t have any fields insert in section Video Info.
We have just fixed this by go to: wp-content/themes/haru-circle/templates/single/content-single-video.php
Go to line 102 and change the code from:
<?php foreach( $video_more_info as $more_info ) : ?>
<div class="more-info">
<h6 class="info-label"><?php echo esc_html( $more_info['0'] ); ?></h6>
<div class="info-value"><?php echo wp_kses_post( $more_info['1'] ); ?></div>
</div>
<?php endforeach; ?>
to
<?php if ( $video_more_info ) : ?>
<?php foreach( $video_more_info as $more_info ) : ?>
<div class="more-info">
<h6 class="info-label"><?php echo esc_html( $more_info['0'] ); ?></h6>
<div class="info-value"><?php echo wp_kses_post( $more_info['1'] ); ?></div>
</div>
<?php endforeach; ?>
<?php endif; ?>
Now it’s working fine.
****
Regards,
HaruTheme