Featured images not showing..

I recently updated my theme and ever since then the featured images are not showing on each page? I have the feature checked to show on screen as well…

Any idea what could be causing this issue?

The featured images work on posts… but not on pages

Featured images are not meant to be visible on pages and they have never been there for this theme. To make featured images to appear for pages you should edit content-page.php template and add

<?php the_post_thumbnail( 'dazzling-featured', array( 'class' => 'thumbnail' )); ?>

right above

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

These changes can be done via Child Theme as well if you copy/paste content-page.php over to Child Theme folder and edit it there.

This worked perfectly… thank you!

thanks. the featured image is shown after i added the code.

however. it only show part of the image. my image is 1920 x 300.

how to show the full image?

thanks.