Elizabeth Ann Seton - Lake Ridge, VA

Remove "Posted On" from Envira Gallery posts

Assigned to
Kyle Sullivan, Web Development at Diocesan Kyle S.
Notes
Hello Veronica,

Could you please remove the 'POSTED ON' text from the title? Please see pic below. Additionally, could you also please add line spacing between the image header and the pictures. Similar to the "our staff" page below. Thank you!

Comments & Events

Kyle Sullivan, Web Development at Diocesan
I updated template-parts/secondary/page-header1.php as follows.
<?php elseif( is_singular() ) : ?>
  <div class="pageHeader">
    <?php $image = get_field('myParish_header', 'options');
    if( !empty($image) ) : ?>
      <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
    <?php endif; ?>
    <div class="pageHeaderTitle">
      <?php if( is_singular( 'myparish-messages' ) ) { echo "Posted On: "; } the_title(); ?>
    </div>
  </div>
Kyle Sullivan, Web Development at Diocesan
Kyle Sullivan completed this to-do.