@rm,
You can sort topics by their titles in certain forums (by forum ID) using a small code. You should put this code in a PHP code snippet of Code Snippets plugin or in the functions.php file of your current active WordPress theme.
Once the code is instead, you should go to Dashboard > wpForo > Overview admin page, scroll down and click the [Delete all caches] button. If you have other cache plugins, just purge them as well.
add_filter('wpforo_topic_list_args', function ($args){
if(!empty($args)){
$forumIDs = array(2, 17);
if( in_array( $args['forumid'], $forumIDs) ){
$args['orderby'] = 'type DESC, title DESC';
$args['order'] = '';
}
}
return $args;
});
As you can see in the 3rd line, I've added a way to only enable this topic ordering for certain forums (2 and 17), so you can insert comma separated forum ID where you want to keep topic sorted by titles. The forum IDs can be found in wpForo > Forums admin page. So don't forget to update forum Ids in the code before using it.
If you need to order all topics of all forums in that way, use this code instead of the first one:
add_filter('wpforo_topic_list_args', function ($args){
if(!empty($args)){
$args['orderby'] = 'type DESC, title DESC';
$args['order'] = '';
}
return $args;
});