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

1 Answer

+1 vote
by
You can do this by adding a few lines immediately before the [ break; ] line that appears after [ case 'questions': ] in qa-page-home.php:

case 'questions':
  .. bunch of stuff you needn't change ...
  
foreach ($questions as $key => $question)
  if (!$question['acount'])
    unset($questions[$key]);

  break;
...