It is definitely major, the patch is tested and fixes the issue.
This needs to be added along with the core_version_requirement for the entity_reference_integrity_enforce module.
This module is flagged compatible with d10 but isn't until this issues if fixed.
Just add this snippet in a custom module:
/**
* Implements hook_simple_sitemap_links_alter().
*/
function YOUR_MODULE_simple_sitemap_links_alter(&$links, \Drupal\simple_sitemap\Entity\Simplesitemap $sitemap): void {
foreach ($links as $key => $link) {
if (isset($link['meta']['entity_info']) && $link['meta']['entity_info']['entity_type'] == 'node') {
$node = \Drupal\node\Entity\Node::load($link['meta']['entity_info']['id']);
if ($node && $node->hasField('field_metatags')) {
$metatags = $node->get('field_metatags');
if ($metatags && str_contains($metatags->value, 'noindex')) {
unset($links[$key]);
}
}
}
}
}
I think this one can be closed as it seems fixed in 4.0.10
Did this issue get fixed in 4.0.10?
stijndmd β created an issue.
doesn't apply to 10.3.5, will try and have a look at this tomorrow
Patch that first decodes the url before parsing and encoding, because we were running into issues with old filenames containting spaces.
They were being encoded to %2520 instead of %20.
yes it does indeed still function in drupal 10 if you change the info file
Probably because there is no compatibility with drupal 10/11.
Just add an installation guide and add explanation on how to use/config/code with this module, imo
stijndmd β created an issue.
stijndmd β made their first commit to this issueβs fork.
I'm confused as to why we have to pick one langauage for the managed resource mapping in configuration.
What's needed is the possibility to map the resources via drush for all the languages on the website.
Proposed resolution
On every drush solr-search-synonym:export --plugin=solr_uploader --langcode=[YOUR_CHOSEN_LANGCODE], we need to replace the hardcoded path variable $path = 'schema/analysis/synonyms/english'; by the path for the corresponding language. Or we need to just remove the language from the drush command and upload all synonyms to their correct language solr config file.
will review this tomorrow
Problem would be when a paragraph entity is used in 2 or more nodes and gets unlinked from one.
Think this would need a choice in the UI delete / keep.
stijndmd β created an issue.
Simple patch file added.
stijndmd β created an issue.
native webp functionality for your image styles + https://www.drupal.org/project/wpf β