like change the order of how the replies display??
latest post on top , first post on the last page??
found this code, add this to your function.php in your child theme
function custom_bbp_has_replies() {
$args['order'] = 'DESC'; // 'ASC' (Ascending, Default), 'DESC' (Descending)
return $args;
}
add_filter('bbp_before_has_replies_parse_args', 'custom_bbp_has_replies' );
Typically if you want to reverse the order of replies then also adding bbPress “Show lead topic” is handy:
bbp_show_lead_topic
Stephen, i can’t find: content-single-topic-lead.php
You don’t need to change any files, just add the code from Rob and the code from the link I posted to your functions file.
Any ideas as to how to add an option for this on the front end so users can switch back and forth between ascending and descending?