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

On users page the out put  is something like this

 

<tr>
<td class="qa-top-users-label"></td>
<td class="qa-top-users-score"></td>
<td class="qa-top-users-spacer">&nbsp;</td>
<td class="qa-top-users-label"></td>
<td class="qa-top-users-score"></td>
</tr>
 

 

But i want to add <div> for each user like this

 

<tr>
<div>
<td class="qa-top-users-label"></td>
<td class="qa-top-users-score"></td>
</div>
<td class="qa-top-users-spacer">&nbsp;</td>
<div>
<td class="qa-top-users-label"></td>
<td class="qa-top-users-score"></td>
</div>
</tr>
 
please any one help me ...

 

Q2A version: Latest 1.6 dev

1 Answer

+1 vote
by
Hi.

This is so simple

you can add your <div> here :

qa-include\qa-theme-base.php on line 899 to 1207

hope this will help you :)
by
thanks ombr for answer i found other solution
by
yw. yes it's better to DO NOT CHANGE the qa-theme-base.php file ;)
...