dzpoa (@dzpoa)

Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

  • dzpoa
    Participant

    @dzpoa

    @netweb No, i’m not using threaded replies. and “Forum root should show” is set to “Topics by Freshness”. It looks to me now that those settings fixed the issue, not the code 🙁


    dzpoa
    Participant

    @dzpoa

    Hi all. Same here. This fixed the problem. Place inside the functions.php:

    function custom_bbp_has_replies() {
        $args['orderby'] = 'ID';
        $args['order'] = 'ASC';
        return $args;
    }
    add_filter('bbp_before_has_replies_parse_args', 'custom_bbp_has_replies' );
    
    function custom_bbp_show_lead_topic( $show_lead ) {
        $show_lead[] = 'true';
        return $show_lead;
    }
    add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );
Viewing 2 replies - 1 through 2 (of 2 total)