diff --git a/templates/blocks/block--page-title-block.html.twig b/templates/blocks/block--page-title-block.html.twig
index 53da1c15a8feca7f3a95f5f4474c341a440bfb00..1a12fe2479cc733cafe65eb6157d31e63cef0373 100644
--- a/templates/blocks/block--page-title-block.html.twig
+++ b/templates/blocks/block--page-title-block.html.twig
@@ -1,4 +1,4 @@
-{% if featured_image == 'no' %}
+{% if hero == 'no' %}
   {%
     set classes = [
     'block',
diff --git a/uw_fdsu_theme_resp.theme b/uw_fdsu_theme_resp.theme
index c846475b8b6a866036f9e9a6e901be91b4a9fec2..ffeacc51cb1cead0d8fee4495e39236ce99727a5 100644
--- a/uw_fdsu_theme_resp.theme
+++ b/uw_fdsu_theme_resp.theme
@@ -394,9 +394,9 @@ function uw_fdsu_theme_resp_preprocess_block(&$variables) {
   // If we do then, set variable to not show page title.
   if ($variables['plugin_id'] == 'page_title_block') {
 
-    // Set the featured image variable to no, we will only
-    // change if there is a featured image.
-    $variables['featured_image'] = 'no';
+    // Set the hero variable to no, we will only
+    // change if there is a hero.
+    $variables['hero'] = 'no';
 
     // Load the node.
     $node = \Drupal::routeMatch()->getParameter('node');
@@ -409,13 +409,13 @@ function uw_fdsu_theme_resp_preprocess_block(&$variables) {
       $node = Node::load($node);
     }
 
-    // If there is a node, check that it has a featured image.
+    // If there is a node, check that it has a hero.
     if ($node) {
 
       // The UW service object.
       $uwService = \Drupal::service('uw_cfg_common.uw_service');
 
-      $variables['featured_image'] = $uwService->uwCheckNodeForFeaturedImage($node);
+      $variables['hero'] = $uwService->uwCheckNodeForHero($node);
     }
   }
 
@@ -508,7 +508,7 @@ function uw_fdsu_theme_resp_preprocess_container(&$variables) {
 
         // Set variables for featured image.
         $variables['node_type'] = str_replace('_', '-', $node->getType());
-        $variables['featured_image'] = $uwService->uwCheckNodeForFeaturedImage($node);
+        $variables['hero'] = $uwService->uwCheckNodeForHero($node);
 
         // If there is a node object, get the header and footer data.
         if ($node) {