Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
409 views
in Q2A Core by
Hi

 

I would also like to have columns on the category list page. How would I do this?

 

Thanks in advance
related to an answer for: How to add 15 rows for Tags and Users?

1 Answer

0 votes
by

There isn't currently an admin setting for this, but you can fix it by changing this line in qa-page-categories.php:

$qa_content['ranking']=array('items' => array(), 'rows' => count($categories));

... to ...

$qa_content['ranking']=array('items' => array(), 'rows' => ceil(count($categories)/2));

Replace the 2 above with the number of columns you want.

by
thanks... worked perfectly
...