Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
345 views
in Q2A Core by
<span class="qa-a-count">
<span class="qa-a-count-data">0</span>
<span class="qa-a-count-pad"> answers</span>
</span>

 

How to change it to:

<span class="qa-a-count">
<span class="qa-a-count-pad">Answers</span>
<span class="qa-a-count-data">0</span>
</span>
Q2A version: 1.5.1

2 Answers

–1 vote
by
you will change these in qa-theme-base.php file
0 votes
by

I did that before :) , use advanced themes and add this function:

 

function a_count($post)
        {
            echo '<span class="qa-a-count"><span class="qa-a-count-pad">Answers: <span><span class="qa-a-count-data">'.$post['answers_raw'].'</span></span>';
        }

...