Craig100
11/11/2024, 7:38 PMvar allContentTags = _tagQuery.GetAllTags();
which should get all tags on the site in all tag groups in the language I'm viewing the site in. But I get 0. In Tag Manager, I can see all the tags. In the nodes, all the tag properties are set to vary by culture, so there are no invariant values anywhere.
If anyone has any ideas I'd love to hear them.
Thanks.Dean Leigh
11/11/2024, 8:51 PMCraig100
11/11/2024, 9:07 PMCraig100
11/11/2024, 9:08 PMCraig100
11/12/2024, 10:59 AMIEnumerable<TagModel?> allContentTags = _tagQuery.GetAllContentTags(culture:Model.GetCultureFromDomains()).Distinct();
fixes it 🙂Dean Leigh
11/12/2024, 11:06 AM