I noticed that the label appears when I open a discussion from the All Discussion pages, but it not appears if I recall the url directly. Any way to fix or it's because is just a css?

    • [deleted]

    enricodx Can you provide a link so I can check ?

    Thanks

    • [deleted]

    Ok. I just tried this on my own forum, and it works fine. I choose a random discussion from the list, and the AUTHOR tag shows. I then copy the URL and open it in another browser, and the AUTHOR tag shows there, too. If you can provide me with a URL so I can check, I'd appreciate it.

    Thanks

      • [deleted]

      I think this is a bug in core to be honest. I can replicate this, and the reason as to why the author badge doesn't show is because the CSS class it relies on is not loaded unless triggered from the discussion list. There's nothing I can do to fix this sadly.

        I think it makes more sense for the 'author' badge to not be part of the link to the usercard/profile.

        So, I think I'd be tempted to use

        article.CommentPost.Post.Post--by-start-user .Post-header h3:after

        instead of

        article.CommentPost.Post.Post--by-start-user .Post-header h3 span.username:after

          JohnP Aaaaaaaand... a way to hide it from the first post only? Cause is obvious that he started the topic

            enricodx You could probably use The CSS selector :not(:first-child)

            I'm not in front of computer right now, but I'll take a look when I am.

            enricodx

            This should work:

            div.PostStream div.PostStream-item:not(:first-child) article.CommentPost.Post.Post--by-start-user .Post-header h3:after {
            content: "Author";
            background: #F05D1D;
            border-radius: 4px;
            padding-left: 10px;
            padding-right: 10px;
            color: #fff;
            margin-left: 14px;
            }

              JohnP google chrome

              EDIT: fixed, it was the cache πŸ™‚

              but if i use a direct link, same issue, it works only if i choose a discussion from discussion list, not for direct link