Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
391 views
in Q2A Core by
how can show new comments first ? because is show old coment first on a post..
Q2A version: 1.80

1 Answer

0 votes
by

change this line https://github.com/q2a/question2answer/blob/dev/qa-include/qa-theme-base.php#L2408

public function c_list_items($c_items)
{
    foreach (array_reverse($c_items) as $c_item) {
    $this->c_list_item($c_item);
    }
}
by
or better you could copy this function to qa-theme.php file of your theme (snowflat theme) before the `public function c_list_item($c_item)` function.
by
–1
thanks for reply... but this code no work for me ...
...