I'm fairly comfortable with Drupal, however with a new page I created the word "Body" remains at the top, even though I have a page title and the word body is nowhere in my code. How do I get rid of this?
I have a question about old fields revisions in Drupal 8. For example I have "Full Title" field in different paragraphs. I have deleted this field from one of the paragraphs, for example from the "Hero". In the database there are tables: paragraph__field_section_full_title and paragraph_revision__field_section_full_title. In these tables all of the records for hero bundle deleted column values changed from 0 to 1.
I am looking for a module to add a new column "Region" to select the position of the fields (right, left...) in the Manage display. I was working some time ago on a web made with Drupal 7 and I could see that there was a column like this. There were four columns: Field, Region, Label and Format. How could I add this column?
I have more than 20 content entity types that I need to perform some alterations on field values at the time of form submission (or thereafter). Of course, I'd prefer to do this with a built in event but I can't find a D9 event that really applies to this case. From a resource/memory/speed standpoint is it better to implement 20+ different hook_FORM_ID_alter's, one for each content type, or use the generic hook_form_alter and have a big switch/if statement that calls different methods/classes, etc, for each content type?