I had the same issue on my side. My solution was to set the path of the term page to: taxonomy/term/%
at the views
seorusus β created an issue.
This patch fixes the deprecated constant USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL
and adds Drupal 9 compatibility to the commerce_base profile.
seorusus β created an issue.
The same issue is on the 3.0.x-dev version.
In my case I 've got media url here
media_entity = content.field_hero_background.0['#media']
then
image_uri = media_entity.field_media_image.entity.fileuri
The completed code is
{% if content.field_hero_background.0['#media'] %}
{% set media_entity = content.field_hero_background.0['#media'] %}
{% set image_uri = media_entity.field_media_image.entity.fileuri %}
<div class="parallax__layer parallax__layer--back" style="background-image: url('{{ file_url(image_uri) }}');">
</div>
{% endif %}
seorusus β made their first commit to this issueβs fork.
seorusus β created an issue.
Added t() to breadcrumb.html theme template.
seorusus β created an issue.