• 0
    • We collect Confluence feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

      NOTE: This suggestion is for Confluence Server. Using Confluence Cloud? See the corresponding suggestion.

      The blog macro of confluence provides the title and description of the blogs along with the number of comments. Is there any way to show the number of likes as well?

            [CONFSERVER-29022] Add "Likes" display to Blog Macro

            Thanks for your interest in this issue.

            While this suggestion has gathered significant interest, we're unable to implement all of the excellent suggestions you make. We appreciate the benefits of such requests, but don't plan to work on this for the foreseeable future.

            This suggestion will be reviewed in about 12 months time, at which point we’ll consider whether we need to alter its status.

            Cheers,

            Confluence Product Management

            Adam Barnes (Inactive) added a comment - Thanks for your interest in this issue. While this suggestion has gathered significant interest, we're unable to implement all of the excellent suggestions you make. We appreciate the benefits of such requests, but don't plan to work on this for the foreseeable future. This suggestion will be reviewed in about 12 months time, at which point we’ll consider whether we need to alter its status. Cheers, Confluence Product Management

            Not a bad SQL workaround, but it would be much better to show number of likes the number of comments in the Blog Macro!

            Why hasn't this feature been added, yet?

            Justin Richards added a comment - Not a bad SQL workaround, but it would be much better to show number of likes the number of comments in the Blog Macro! Why hasn't this feature been added, yet?

            Just to share, I somehow manage it using the solution given in this link:
            https://answers.atlassian.com/questions/144250/confluence-count-number-of-likes-on-a-page

            I use SQL Plugin by bobswift and use the query:

            Select C.TITLE as Saran, COUNT(l.CONTENTID) as Likes
            from content c
            left JOIN likes l on c.contentid = l.contentid
            left JOIN spaces s ON c.spaceid = s.spaceid
            where spacekey = [SPACENAME] and contenttype = 'PAGE'
            and parentid is not null
            group by C.TITLE
            order by COUNT(l.CONTENTID) desc

            Anna Rumawas added a comment - Just to share, I somehow manage it using the solution given in this link: https://answers.atlassian.com/questions/144250/confluence-count-number-of-likes-on-a-page I use SQL Plugin by bobswift and use the query: Select C.TITLE as Saran, COUNT(l.CONTENTID) as Likes from content c left JOIN likes l on c.contentid = l.contentid left JOIN spaces s ON c.spaceid = s.spaceid where spacekey = [SPACENAME] and contenttype = 'PAGE' and parentid is not null group by C.TITLE order by COUNT(l.CONTENTID) desc

            Yep

            Please add this function.

            Anna Rumawas added a comment - Please add this function.

            DanielA added a comment -

            We may also want to add the ability to like the page from within the macro.

            DanielA added a comment - We may also want to add the ability to like the page from within the macro.

              Unassigned Unassigned
              dborcherding DanielA
              Votes:
              8 Vote for this issue
              Watchers:
              8 Start watching this issue

                Created:
                Updated: