- π©πͺGermany ThuleNB
I am facing the same issue.
Does somebody figure out a workaround for this?
The taxonomy module's Taxonomy Term Name validator for views contextual filters (located here: core/modules/taxonomy/src/Plugin/views/argument_validator/TermName.php) does not work with translations.
From TermName.php:
public function validateArgument($argument) {
if ($this->options['transform']) {
$argument = str_replace('-', ' ', $argument);
$this->argument->argument = $argument;
}
$terms = $this->termStorage->loadByProperties(['name' => $argument]);
The problem is present whether or not the transform option is selected, it seems that loading by name is where this fails.
I have described this issue in more detail here: https://drupal.stackexchange.com/questions/271754/multiple-relations-and...
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I am facing the same issue.
Does somebody figure out a workaround for this?