Is there a way for members to see their own id?

You can add the User ID to every post with a simple customization:

<script type="text/discourse-plugin" version="0.5">
  api.decorateWidget('post-meta-data:after', dec => {
    return dec.rawHtml(`<div class="post-info user-id">User #${dec.attrs.user_id}</div>`);
  });
</script>

You can preview it Discourse Theme Creator.
Yeah, it needs some CSS to not be so ugly

2 Likes