Node title is not display when mapping to a pattern

Created on 10 December 2023, over 1 year ago
Updated 16 January 2024, about 1 year ago

Problem/Motivation

For content type displays I've using a pattern, node title is mapped to a field in patter, but it is not displayed on front end. Other fields are displayed correctly.

Steps to reproduce

  • Create a pattern
  • Implement following hook in a custom module to enable title in the node view display configuration
    function amymodule_entity_base_field_info_alter(&$fields, $entity_type) {
      if ($entity_type->id() == 'node') {
        if (isset($fields['title'])) {
          $fields['title']->setDisplayConfigurable('view', TRUE);
        }
      }
    }

    Now node title is visible in node display modes configuration.

  • Now using using field group pattern apply a pattern to configure node display modes. Make sure to map node title to one of the field in the patter
  • Create a new node, and on the node view page in the display all fields are displayed but node title is no visible.
🐛 Bug report
Status

Closed: works as designed

Version

1.0

Component

Code

Created by

🇩🇪Germany sharique

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024