I volunteered to host a Drupal site for a local non-profit organization.
The existing site was badly enough broken that I decided to start with a clean installation of Drupal 8.8 and transfer the (minimal) content by hand.
In order to keep the broken site up while I was debugging the new installation, I created my new installation under a different URL. So the old site was under the organization's URL (call it "myorg.org") and I built the new installation in a different directory, and linked that directory as a subdirectory of my personal domain ("mydomain.org/myorg-new").
I created a type of "article" node. A user can flagged the nodes.
On the "full" nodes, I want to display the link for flagged and the total number of flag. With the latest version of the module it is easy because it supports the counter in TWIG.
On the "teaser" of the node, I want to display only the total number of flags. But in the node display mode, there is nothing to select the flag display mode.
How to choose the display mode of the flag type from the display mode of the node ?
I'm attempting to use Paragraph to format the Article content type display. I have a "body" Paragraph. but I'd also like to add a Photo and Caption Paragraph. How do I add those two Paragraphs to the Article content display - then format all three Paragraphs? The goal is to have the Photo and Caption display on the left side of an Article and display the body on the right side.