Hello.
How to render fulltext image in custom template override because this
JLayoutHelper::render('joomla.content.fulltext_image', $this->item); // also tried full_image, image_fulltext etc...
doesn't work.
If we want to render intro_image, this works (Joomla default):
JLayoutHelper::render('joomla.content.intro_image', $this->item);
Also there is always option:
$images = json_decode($this->item->images)
...and other part
But I am really interested why JLayoutHelper with render method not working for fulltext images?
regards