- Issue created by @juc1
- First commit to issue fork.
- Status changed to Closed: outdated
over 1 year ago 10:33am 3 July 2023
For a comment the {{ title }}
variable prints the comment subject together with a link to the comment.
So I want to print just the comment subject without the link.
I have added {{ dump() }}
to my comment.html.twig - result with dump output is here
So with this dump output what is the syntax to say in comment.html.twig print the comment subject without the link?
I have tried a few things which have not worked such as {{ comment.subject }}
or {{ title.0 }}
Or in other words, what are some examples of using the output of dump() in my template file?