Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
592 views
in Q2A Core by
Actually I am working on a website where people share their stuff and on that particular website I don't need to show the answers count. Is there any way to hide to do so?
Q2A version: 1.6.3

1 Answer

+1 vote
by
selected by
 
Best answer
use CSS:

.qa-a-count {
    display:none;
}

for a specific site, check the body class.

E.g. questions page would be:

. qa-template-questions .qa-a-count {
    display:none;
}
by
Thanks a lot for your help, but I don't know much about all this. So can you tell me where exactly I have to put this?
I couldn't find qa-template-questions file on the server.
by
add it to \qa-theme\THEME\qa-styles.css
by
thanks a lot, its showing exactly as I wanted.
...