Howto show the topic id in Metadata of initial Post

I tried to display the Topic ID in the initial Post of all topics of a specific category but failed. I could not find a way by configuring Discourse and also a plugin - similar to Discourse BBCODE - failed to work.

Could you please give me a clear hint on how to realize to display the Topic ID in the initial Post metadata of each topic of a specific category?

I need this to continue the customer expectations of the old system as well some related functions and behavior.

Thanks a lot!

The topic_id is at the end of the URL.

Can you say more about what expectations you are tryingto may and what features you need?

As I mentioned in my Post I try to write a plugin, probably the dev category is not the proper place due I don’t want this in Discourse itself. Can you point me to some kind of solution how to display additional (existing) meta data in the initial Post Header?

I know that the URL contains the TopicID as last “Tuple” and there is also a canonical link in the html header that does. I need to display the TopicID on the initial Post. We often speak about “Topic#34074” or something and want to stay with that habit, which our customers and partners are used to.
So I tried to extract the ID (successfully) and past it into the ‘div.topic-meta-data’, which failed.

Add this to Settings > Customize > Common > </head>:

<script type="text/discourse-plugin" version="0.5">
  api.decorateWidget('post-meta-data:after', dec => {
    if (dec.attrs.post_number === 1) {
      const topic = dec.getModel().get('topic');
      return dec.rawHtml(`<div class="post-info topic-id">Topic: ${topic.get('id')}</div>`);
    }
  });
</script>

And you get:

And you just need to add some CSS.

of course, stylesheets are needed! :sunglasses:

exactly what I’m looking for - thanks a lot!!! :hugs:

你好,Topic ID 会在帖子元数据之后显示。我想让它显示在标题之后,该怎么做呢?非常感谢!

你可以直接使用 component-name:after widget-name:after。或者,如果在你想要的位置有可用的插件出口,也可以使用插件出口。

没有生效 :frowning:

<script type="text/discourse-plugin" version="0.5">
  api.decorateWidget('component-name:after', dec => {
    if (dec.attrs.post_number === 1) {
      const topic = dec.getModel().get('topic');
      return dec.rawHtml(`<div class="post-info topic-id">主题:${topic.get('id')}</div>`);
    }
  });
</script>

你真的是把 component-name widget-name 而不是组件的实际名称输入进去了吗?

我想在用户名下方显示主题 ID,应该替换哪个 widget-name 代码?:slight_smile:
谢谢!

你好,谁能帮我一下 :frowning:

你试过上面帖子中 Falco 建议的方法了吗?

你好,我们如何在帖子中显示主题浏览量?

你好,谁能帮我显示“将消息移出话题”按钮?

js.user.private_message

示例: