Add [SOLVED] to solved topic titles

It’s possible gwenael I user sélect solved thé plugin add on title subject [SOLVED]
?

There’s nothing in the plugin currently that would do this, but it may be possible to do something visually with a theme component?

2 Likes

Hello :wave:

Yeah it’s possible with a simple CSS code too.

.topic-list-item {
  &.status-solved {
    .title {
      &:before {
        content: "[SOLVED] ";
      }
    }
  }
}

Result

Screenshot 2023-10-08 at 17.51.27

4 Likes

Ok thank’s but this is just for topic list, when i enter on subject no SOLVED show on topic

what the css necesarry add for this ?

Hello :wave:

I’ve made a theme component for this. :slightly_smiling_face:

5 Likes