Oh this is a single post page. Looking on the code it only displays the Title and Body by default.
<header class="entry-header has-text-align-center header-footer-group">
<div class="entry-header-inner section-inner medium">
<?php echo '<h1 class="entry-title">' . $CisionItem->Title . '</h1>'; ?>
</div>
</header>
<div class="post-inner thin">
<div class="entry-content">
<p><?php echo $CisionItem->HtmlBody; ?></p>
</div><!-- .entry-content -->
</div>
The easiest fix for this would be to just copy the template into your current themes folder and modify it to something like this:
<header class="entry-header has-text-align-center header-footer-group">
<div class="entry-header-inner section-inner medium">
<?php echo '<h1 class="entry-title">' . $CisionItem->Title . '</h1>'; ?>
</div>
</header>
<div class="post-inner thin">
<div class="entry-content">
<p><?php echo $CisionItem->Intro; ?></p>
<p><?php echo $CisionItem->HtmlBody; ?></p>
</div><!-- .entry-content -->
</div>
The template can be found under:
wp-content/plugins/cision-block/src/Frontend/templates/cision-block-post.php
.