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

I tried to override function vote_count without effect, you might want to try it yourself:

    function vote_count($post) {
        $this->output('<p>Test</p>');
        qa_html_theme_base::vote_count($post);
    }

My goal is to dispaly the users who voted publicly.

I guess the override in qa-layer-voters-flaggers.php / function vote_count($post) is interfering somehow...

Q2A version: 1.6.2

Please log in or register to answer this question.

...