Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
255 views
in Q2A Core by

1 Answer

+4 votes
by
edited by
 
Best answer

As you said, we are only hiding the voting buttons.But the count will be shown..Just replace the function in qa-theme-base.php

Edit: You should add this function to your theme's qa-theme.php file.So it will not affect future updates.

public function voting_inner_html($post)

 {

  if (qa_is_logged_in()) {

  $this->vote_buttons($post);

  }

  $this->vote_count($post);

  $this->vote_clear();

 }

by
It works................
by
Its my pleasure..
...