Change Reply button text in specific category?

I know you can change the reply button text globally or just in PM’s, but I want to change it in a specific category (a category where you can leave reviews using the topic ratings plugin). Does anyone know of an existing way via css or plugin to change the reply text? Thanks!

Are you talking about this button?

If so here’s a quick hack.
Probably there’s a better way to do this, otherwise, give it a try. Also, change the category class with the one you need.

.category-support button.create .d-button-label {
  font-size: 0;
}

.category-support button.create::after {
  content: "Say Something";
  font-size: 1em;
}
1 Like

So simple, why didn’t I think of that? Thank you so very much, that works brilliantly!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.