Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
246 views
in Q2A Core by
Hello! I need to change value on Q&A voting buttons, from + and - to "Upvote" and "Downvote". Where can I do that? Haven't found those values in any language files.

1 Answer

+1 vote
by
They are in the function vote_buttons in the theme (qa-theme.php in your theme folder, or qa-theme-base.php)

But the + and - are not designed to be visible, they're just there as a backup. If you want to make text visible you could try using CSS with the content property, for example:

.qa-vote-up:before { content: "Upvote"; }
...