- 🇮🇳India rassoni Bangalore
Patch #35 Verified and tested locally on Drupal 10.1.x.
Patch applied successfully and looks good to me.Testing steps:
1. Goto admin/structure/types/manage/basic page
2. Observe that the title description field is absent.
3. Apply the patch.
4. Reload.
5. Observe that the title description field has been added.Testing Result: After applying the patch the title description field appears.
- 🇮🇳India Aziza Anwari Gujarat
Checked the code, also title appears in the node as expected
RTBC + 1 - Status changed to Needs work
about 2 years ago 10:18pm 2 April 2023 - Status changed to Needs review
about 2 years ago 7:18am 5 April 2023 - Status changed to Needs work
almost 2 years ago 2:36pm 12 April 2023 - 🇭🇺Hungary Gábor Hojtsy Hungary
The API already allows to configure this, it is not exposed on the UI though. I can see the use case of needing to give some guidance to the user about the title field. I also don't think this goes against #2350041: Remove node title field description → , that removed a badly technical hard coded description, while this one does not add a new hardcoded description but exposes a feature to the user instead.
The field however is not added consistently with the rest of the elements. How is the field description presented on other field config pages? That would be best to replicate here.
- Status changed to Needs review
almost 2 years ago 7:16am 18 April 2023 - last update
almost 2 years ago Custom Commands Failed - 🇳🇿New Zealand danielveza Brisbane, AU
Addressed #47.
Changed the field label to "Title field description"
Updated the description of the field based on the generic field description. - Status changed to Needs work
almost 2 years ago 7:02pm 19 April 2023 - 🇺🇸United States smustgrave
Thanks @Gábor Hojtsy for taking a look!
Appears to have a build failure
- Status changed to Needs review
almost 2 years ago 2:06am 20 April 2023 - last update
almost 2 years ago 29,283 pass - Status changed to RTBC
almost 2 years ago 6:53pm 20 April 2023 - last update
almost 2 years ago 29,302 pass - last update
almost 2 years ago 29,302 pass - last update
almost 2 years ago 29,300 pass - last update
almost 2 years ago 29,366 pass - last update
almost 2 years ago 29,366 pass - last update
almost 2 years ago 29,367 pass - last update
almost 2 years ago 29,374 pass - last update
almost 2 years ago 29,379 pass - last update
almost 2 years ago 29,380 pass - last update
almost 2 years ago 29,380 pass - last update
almost 2 years ago 29,388 pass - last update
almost 2 years ago 29,388 pass - last update
almost 2 years ago 29,387 pass, 2 fail The last submitted patch, 50: 2999849-50.patch, failed testing. View results →
- last update
about 1 year ago Patch Failed to Apply - last update
about 1 year ago Build Successful - last update
about 1 year ago 25,985 pass, 1,835 fail - Status changed to Closed: won't fix
10 days ago 1:09am 26 March 2025 - 🇦🇺Australia acbramley
The Title field is a base field on Node.
Base fields can have their labels and descriptions overridden using the base_field_override config.
There is a module to expose UI to do this https://www.drupal.org/project/base_field_override_ui →
Alternatively you can use drush to generate one for you, see https://www.previousnext.com.au/blog/overriding-base-field-labels-and-de...
An example of a title base field override for the page content type:
File: core.base_field_override.node.page.title.ymllangcode: en status: true dependencies: config: - node.type.page id: node.page.title field_name: title entity_type: node bundle: page label: Title description: 'My custom description' required: true translatable: true default_value: { } default_value_callback: '' settings: { } field_type: string