Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.3k views
in Plugins by
i am wondering if there is a plugin like the one i can see here in this forum which display : Questions:13.890, Answers: 23400, Users:8,874 etc.

2 Answers

0 votes
by
Have a look at this one :

http://www.question2answer.org/qa/30833/new-plugin-q2a-webmaster-plugin

(It's for a q2a administrator)
by
I want it for the homepage and not for the administrator.
by
Ok, Just to know, why the current widget is not "enough" ? Which new features are you looking for ?
by
maxjtechno the plugin you mentioned is awesome but what i want is only to show on the front page three things: Number of questions of my website, number of comments of my website, and number of registered users. Nothing else :)
by
You could just modify the code of the widget ( see for instance amiyasahu.com's tip )
0 votes
by

So if you want to remove the comment counts from the side bar widget you need to do a small code change or else write a new plugin with necessary code changes . Changes are pretty simple . 

  1. open the \question2answer\qa-include\qa-widget-activity-count.php file 
  2. inside function output_widget there will be the lines 
    if (qa_opt('comment_on_qs') || qa_opt('comment_on_as'))
          $this->output_count($themeobject, qa_opt('cache_ccount'), 'main/1_comment', 'main/x_comments');
  3. Just comment those lines out .
  4. Thats it . you wont get the comment count on the front page . 
 
Hope this helps . 
...