How do I delete/remove a broken configuration?

How do I delete/remove a broken configuration?

I’m using Layout Builder to manage the display of a content type. I was playing around with the config and adding different things, and something I added caused the page to crash and now I get this error: The website encountered an unexpected error. Please try... read more
How do I delete/remove a broken configuration?

Have Views based Taxonomy Term page use term description for title

I am using a view to replace the standard Taxonomy Term page (turned on the standard one in Drupal 8.x). I want the Title of the page to be changed from the Name of the term to the Description of the term everywhere it appears, in the Title attribute in the Header but... read more
How do I delete/remove a broken configuration?

Unable to retrieve uploaded file in submit handler

I’m creating a custom form with a file upload field that will have its contents read, processed then sent to an external API. The problem is whenever I upload the file the field for it appears to be empty in the submit handler and I cannot see why. In this... read more
How do I delete/remove a broken configuration?

How do I add conditional fields to a paragraph?

I was able to add conditional fields in a paragraph, following Conditional Fields in Paragraphs Using the Javascript States API for Drupal 8, but it controls and hides only 1 field. I need to control multiple fields from one select list. I added multiple fields to a... read more
How do I delete/remove a broken configuration?

Broken/missing handler error for my custom views filter?

I am trying to write a custom filter for views. The goal is to filter by alias, but that’s not important now. It seems like I am missing a step to get view to recognize my filter hander after adding my filter in hook_views_data_alter as in the following: /** *... read more
How do I delete/remove a broken configuration?

How can I set up Protected Pages so users only have to log in once?

I’m using the Protected Pages module to make an area of the website – which is about 13 pages – password protected. The problem is that users have to enter the password to view every page rather than being able to enter the password once and then... read more
How do I delete/remove a broken configuration?

How can I set the default format for a node body field and hide the form element to choose it?

I am trying to set the default input format for a node body field and avoid users can select a different input format by hiding the form element to change it. I am using the following code, but it doesn’t work. /** * Implements hook_form_alter(). */ function... read more
How do I delete/remove a broken configuration?

Using entity_lookup inside an entity_generate migration process plugins

I’m trying to use an entity_lookup process plugin inside an entity_generate process plugin. The YML looks like this field_validation: plugin: entity_generate access_check: false entity_type: node source: validation_name value_key: title bundle: validation... read more
How do I delete/remove a broken configuration?

How can I loop through all article content types and get the content of each

I created a new article content and am overriding that by creating a template for it (ie: node–4.html.twig). Then inside this template, I want to loop through all nodes that belong to article content type; and to achieve that, I created my .theme file and added... read more