I'm using cweagans/composer-patches to apply a patch to drupal/core. When a second developer has pulled down the codebase and run composer install, the installation of drupal/core is failing.
I'm not sure why this is happening because composer install works on my local machine?
If I remove the patch from my comopser.json, and re-run composer install, the patch isn't removed. How can I remove the patch from drupal/core please?
How do I set up the views for the media library widget to show and chose only my registered media when I enter the media reference field for a content type?
This is the question of how to create a ‘reference method’ in a field setting for a content type.
Doesn't the 'reference method' setting work for input forms?
Views display seems to have 'entity browser' settings, but no media library.
While uninstalling the module Slushi Cache (https://www.drupal.org/project/slushi_cache) I get the following error: "The website encountered an unexpected error. Please try again later. Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException: You have requested a non-existent service "cache.backend.slushi". in Symfony\Component\DependencyInjection\ContainerBuilder->getDefinition() (line 1060 of vendor/symfony/dependency-injection/ContainerBuilder.php).
I would like to create a D8 module which will display a list of a given ContentType based on a filter method. Some of the filter elements are dependent on others. For example, talking about cars, if one selects the make Honda, he expects to find within Models <Civic, Jazz, CR-V etc> but not <A1, A2, A3, A4, A6> which corresponds to Audi make.
This is the main point of my question: how to create these dependent filter elements (for example all make and dependent models for cars) ?