If we want to load paragraph entity fields on node twig template. It's easy to load paragraph entity, Please have a look..
{# call to paragraph entity fields on node twig #}
{{ node.field_professional_features.entity.field_professional_services_name.value }}
// here `field_professional_features` is the content type field and `field_professional_services_name` is the related paragraph field..
{{ node.field_professional_features.entity.field_professional_services_summ.value }}
// here `field_professional_features` is the content type field and `field_professional_services_summ` is the related paragraph field..
// here we are calling paragraph image field..
{% for key, image in node.field_professional_features %}
// here `field_professional_features` is the content type field..
{%if image.entity %}
{% set paragraph = image.entity %}
{% set file = paragraph.field_professional_services_imag.entity %}
// here `field_professional_services_imag` is the related paragraph field..
{% set uri = file_url(file.uri.value) %}
<img src="{{ uri }}" alt="{{ paragraph.name.value }}" />
{% endif %}
{% endfor %}
Note: If have any suggestions or issue regarding 'Paragraph fields render in drupal 8 Twig template.' then you can ask by comments.
{# call to paragraph entity fields on node twig #}
{{ node.field_professional_features.entity.field_professional_services_name.value }}
// here `field_professional_features` is the content type field and `field_professional_services_name` is the related paragraph field..
{{ node.field_professional_features.entity.field_professional_services_summ.value }}
// here `field_professional_features` is the content type field and `field_professional_services_summ` is the related paragraph field..
// here we are calling paragraph image field..
{% for key, image in node.field_professional_features %}
// here `field_professional_features` is the content type field..
{%if image.entity %}
{% set paragraph = image.entity %}
{% set file = paragraph.field_professional_services_imag.entity %}
// here `field_professional_services_imag` is the related paragraph field..
{% set uri = file_url(file.uri.value) %}
<img src="{{ uri }}" alt="{{ paragraph.name.value }}" />
{% endif %}
{% endfor %}
Note: If have any suggestions or issue regarding 'Paragraph fields render in drupal 8 Twig template.' then you can ask by comments.
No comments:
Post a Comment