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 gVectors community!
Merry Christmas and Happy Holidays! 🎄
Is there a way to have comments sorted newest to oldest but replies to comments sorted oldest to newest like facebook and YouTube?
I'm not sure if there is another way to do this but the following is how I got what I wanted.
In the functions.php file of your theme or child theme add the following:
function setCommentArgs($defaultArgs){
return array_merge($defaultArgs,array('reverse_children'=> TRUE));
}
add_filter('wpdiscuz_comment_list_args', 'setCommentArgs');
Is there a way to have comments sorted newest to oldest but replies to comments sorted oldest to newest like facebook and YouTube?
There is no other way this is the only custom codding way.
