ヘッダー内の票数とタグの間隔なし

これを見つけて使用しました。

// 0票数を非表示にする


.vote-count-0 {
  display: none;
}

// 最後から2番目のタグのコンマを非表示にする

.discourse-tags:has(.vote-count-0) {
  .discourse-tag:nth-last-child(2):after {
     display: none;
  }
}

調整が必要かもしれません。

「いいね!」 2