Translate Entry Relationships #11030
-
Beta Was this translation helpful? Give feedback.
Answered by
brandonkelly
Apr 27, 2022
Replies: 1 comment
-
Yes, this is expected. Craft does not store a target site for each relationship individually. On the front-end, you can fetch the related entries across other sites besides the current one if necessary, like so: {% set relatedEntries = entry.bestOfProjects
.site('*')
.preferSites([entry.siteId])
.unique()
.all() %} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
brandonkelly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, this is expected. Craft does not store a target site for each relationship individually.
On the front-end, you can fetch the related entries across other sites besides the current one if necessary, like so: