こんにちは
ご報告ありがとうございます。
次期バージョンで修正させていただきますので、
お急ぎの場合は下記のテンプレートの修正をおこなってみてください。
themes/welcart_basic-beldad/header.php
1. 「$headers_count」の追加 172行目あたり
<?php
$headers = get_uploaded_header_images();
$headers_count = count( $headers );
?>
2. 条件分岐の追加 178行目あたり
<?php if ( $headers_count > 1 ) : ?>
<div class="flex-row">
<div class="flexslider">
<?php endif; ?>
3. 条件分岐の追加 207行目あたり
</ul>
<?php if ( $headers_count > 1 ) : ?>
</div>
</div>
<?php endif; ?>
※ 2・3 の <?php if ( $headers_count > 1 ) : ?> .... <?php endif; ?>
で、
管理画面 > 「ヘッダー画像」で登録された画像が2枚以上の場合にのみ、<div>タグを挿入しスライド機能を実装するように修正をおこないました。