Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
I am using Q&A layout in my site. This layout ranks the answers according to votes. Namely, if the first answer takes less vote it ranks below. If an answer gets more vots it rises up. But I want them to be ranked from early answer to late answer from top to bottom, like other layouts. Is it possible?
You can put this hook code in the functions.php file of your current active WordPress theme or use Code Snippets plugin to insert this code. Delete all caches, then delete wpForo cache in Dashboard > Forums > Dashboard admin page.
add_filter('wpforo_post_list_args', function ($args){
if(!empty($args) && !isset($_GET['orderby'])){
$args['orderby'] = '`is_first_post` DESC, `created` ASC, `postid` ASC';
}
return $args;
});
Thank you very much. It worked.
