I have several views that I need rendered within pages. I have a field to pull in these views as blocks within the content editor, but I am running into an issue where the only display options for this field I get are "Label" or "Entity ID". How can I get Drupal to give me the view as a rendered entity instead? I'd prefer to not to have to use something like twig tweak's drupal_view()
within templates, as the entity ID will change based on all the different pieces of content, and there are several pages that would need to use that function to render different views.
I have tried setting up the view field a handful of ways, but only am able to get "entity id" and "label" as options to display the view within the content. I'd like to be able to use "rendered entity" instead. I also tried to instead just use Views, but there is data needed from the associated content pages. Tried to use twig tweak, but as mentioned, there is a lot of variables, so I think receiving "rendered entity" for the views would be best, just not sure how to go about that.