Hi
Your need add condition by condition group and add tag
$group = $query->createConditionGroup('OR', ['facet:field_type']);
$group->addCondition('type', 'New');
$query->addConditionGroup($group);
Patch #3 worked for me.
Drupal version : 10.1.6
drupal/metatag: 1.26.0
Add option on widget settings. This option allow collapse settings elements
Or need create option in widget settings
Push change. Please reviews
#36 confirm
Hi
Or copy your a need configs from DRUPAL_ROOT/modules/contrib/search_api_solr/config/optional
Thanks!
#12 worked!
After search problem. I change script run dir. See https://github.com/batkor/react-drupal/blob/main/src/App.php#L59
Hi.
I think, we need see template loaders.
Please see https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal/Co...
Relative paths and i get errors in my reactPHP app;
```
Uncaught PHP Exception Twig\Error\LoaderError: "Template "core/modules/views/templates/views-view.html.twig" is not defined." at /var/www/html/vendor/twig/twig/src/Loader/ChainLoader.php line 99
```
Thanks, PAtch #4 worked for me.
Drupal 10.1.1)
Why do you need it for existing websites?
Or add update instruction.
I used a 2.0.0 module version. After update to 2.1.0, i get error
TypeError: uasort(): Argument #1 ($array) must be of type array, null given in uasort() (line 284 of modules/metatag/src/MetatagManager.php
Move to d10.
Thanks!
Hi.
Thanks.
I think, need create hook update for add default config
Thanks! Worked for me.
https://git.drupalcode.org/project/amptheme/-/merge_requests/5.diff
Add new plugin, Filter by providers.
I think need replace "Category" plugin to Provider. Provider (always) = module_machine_name
Example for $11
/**
* Implements pre save event subscriber.
*
* @param \Drupal\default_content_deploy\Event\PreSaveEntityEvent $event
* The event.
*/
public function preSave(PreSaveEntityEvent $event) {
$pathAliasesStorage = $this
->entityTypeManager
->getStorage('path_alias');
$data = $event->getData();
$entity = $event->getEntity();
if (empty($data['path'])) {
return;
}
foreach (array_keys($entity->getTranslationLanguages()) as $langcode) {
$value = NULL;
foreach ($data['path'] as $pathValue) {
if ($pathValue['langcode'] === $langcode) {
$value = $pathValue;
break;
}
}
if (!empty($value) && !empty($value['alias'])) {
unset($value['pid']);
$value['pathauto'] = PathautoState::SKIP;
$pathAliases = $pathAliasesStorage->loadByProperties([
'alias' => $value['alias'],
]);
$pathAliasesStorage->delete($pathAliases);
$translateEntity = $entity->getTranslation($langcode);
$translateEntity->set('path', $value);
$this->pathautoGenerator->createEntityAlias($translateEntity, 'insert');
}
}
}
Hi.
Create patch for beta3 tags.
Implements from event dispatcher.
I think need move patch for a 2 branch
This my variation for optimize form
Add patch
batkor → created an issue. See original summary → .