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

How do I move the "see more comments" link to the bottom of the comments? Like the photo below

Q2A version: 1.8

1 Answer

+2 votes
by
selected by
 
Best answer

Just add this function to the qa-theme/SnowFlat/qa-theme.php file:

public function c_list_items($c_items) {
    if (!empty($c_items)) {
        $firstItem = reset($c_items);
        if (isset($firstItem['expand_tags'])) {
            require_once QA_INCLUDE_DIR . 'util/sort.php';

            $firstItemKey = key($c_items);
            qa_array_reorder($c_items, [$firstItemKey], QA_ARRAY_AT_END);
        }
    }

    parent::c_list_items($c_items);
}
by
Great, thank you very much
...