My banner doesn't work on WP

I can’t manage to fix a problem with a banner. My banner doesn’t work as it should be for some reason and I haven’t done anything to it. If somebody could just come here, and check the problem for me I would be thankful.

Hey there!
Check the link, it shows the solution and why it happens

If you navigate to the Theme Header (header.php) file you need to alter the source code.

By default it will say
` <?php if ( get_theme_mod( ‘tyche_show_banner’, false ) ) : ?>

<?php $banner = get_theme_mod( ‘tyche_banner_type’, ‘image’ ); get_template_part( ‘template-parts/banner/banner’, $banner ); ?> `

You need to change it so true so it should instead read
` <?php if ( get_theme_mod( ‘tyche_show_banner’, true ) ) : ?>

<?php $banner = get_theme_mod( ‘tyche_banner_type’, ‘image’ ); get_template_part( ‘template-parts/banner/banner’, $banner ); ?> `

This resolved the issue for me.