This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
I'am doing a project at work that use Drupal for backend, I created a Paragraph type Called Collection-band-3 that has a field named "Content reference" and is a Entity Reference refered to a content type named Person that has a series of fields, I want to get and print the person connected to that reference field
I am doing this :
{% block paragraph %}
<div class="co-collection-band-3">
<h2> {{paragraph.field_title.value|raw}} </h2>
<p> {{paragraph.field_body.value|raw}} </p>
</div>
<p> {{content.field_content_reference|raw}}
{% for person in content.field_content_reference %}
{{ person _field_title }}
{% endfor %}
</p>
{% endblock paragraph %}
Can I get some help?
Subreddit
Post Details
- Posted
- 4 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/CodingHelp/...