Replies: 2 comments
-
Thank you for submitting your first issue, awesome! 🚀 We're thrilled to receive your input. If you haven't completed the template yet, please take a moment to do so. This ensures that we fully understand your feature request or bug report. On what happens next, see the docs. If you like Orchard Core, please star our repo and join our community channels. |
Beta Was this translation helpful? Give feedback.
0 replies
-
See and answer here: Lombiq/DotNest-Support#62. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm working with Dotnest and facing issues accessing complete Image Content Items in both Liquid widgets and workflows.
I have several Image content items created and published on my Dotnest site (simplegallery.dotnest.net). While SQL queries confirm these content items exist in the database, I can't properly access or display them in Liquid widgets or workflows.
SQL query that successfully returns Content Items:
SELECT * FROM ContentItemIndex WHERE ContentType = 'Image' AND Published = true
Liquid templates to access these Content Items:
{% assign images = Query("AllImages") %}
{% for item in images %}
{{ item.DisplayText }}
Content structure: {{ item.Content | keys | join: ", " }}

{% endfor %}I should be able to access the complete Content Item structure including all its properties, fields, and relationships within both Liquid templates and workflows.
Actual results
No data is displayed in Liquid templates despite SQL confirming Content Items exist
HTML code shows as plain text rather than being rendered
Cannot access the Content Item structure properly in workflows
What is the correct approach in Dotnest to:
Access complete Image Content Items in Liquid templates
Properly reference and display images from these Content Items
Process these Content Items within workflows
Thank you for your assistance.
Beta Was this translation helpful? Give feedback.
All reactions