Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Matt 91 posts 237 karma points
    Jul 22, 2014 @ 13:07
    Matt
    0

    TagService - tag count

  • Andy Butland 422 posts 2334 karma points MVP 4x hq c-trib
    Jul 23, 2014 @ 09:16
    Andy Butland
    0

    I don't believe the new API supports this unfortunately, at least when I looked at this a few months ago I had to use the legacy method, like this:

                    tags = umbraco.cms.businesslogic.Tags.Tag.GetTags("default")
                        .OrderByDescending(x => x.NodeCount)
                        .Take(5)
                        .Select(x => new TagDetail
                        {
                            Text = x.TagCaption,
                            NumberOfArticles = x.NodeCount,
                        })
                        .ToList();

    TagDetail is a custom object in my application.

    Andy

  • Matt 91 posts 237 karma points
    Jul 29, 2014 @ 13:00
    Matt
    0

    Hi Andy,

    This is also how I implemented it before however we're experiencing a bug where tags from different categories are appearing in the list even though the category is set in the GetTags function.

    I put it down to a bug with Umbraco 7/legacy so needed the nodeCount property on the new API.

  • Shannon Deminick 1530 posts 5278 karma points MVP 3x
    Oct 16, 2014 @ 07:26
    Shannon Deminick
    0

    I've also now added node count to TagQuery:

    http://issues.umbraco.org/issue/U4-5649

    Since it already existed on the tag service:

    http://issues.umbraco.org/issue/U4-5290

  • andrew shearer 513 posts 663 karma points
    Jan 19, 2015 @ 03:53
    andrew shearer
    0

    Hi – does anyone have an example of using the TagService in 7.2 to get the Tag cloud given the tag(s) for the current IPC node?

     

    i.e. using the tags of the current content node, give me a list of other content nodes with the same tags, ordered by total matched count.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies