Hi all,
My users can choose the order that they show topics in a forum, with the below code in the forum/index.php file. BUT, they can’t choose the order that they show posts within a topic. Is this possible? I’ve had requests to change the order from ASC to DESC but I’m sure people would really like to be able to choose one or the other for themselves…
Thanks,
Daisy
forum/indexp.php code:
<div class="item-list-tabs" id="subnav" role="navigation">
<ul>
<?php do_action( 'bp_forums_directory_group_sub_types' ); ?>
<li id="forums-order-select" class="last filter">
<label for="forums-order-by"><?php _e( 'Order By:', 'cc' ); ?></label>
<select id="forums-order-by">
<option value="active"><?php _e( 'Last Active', 'cc' ); ?></option>
<option value="popular"><?php _e( 'Most Posts', 'cc' ); ?></option>
<option value="unreplied"><?php _e( 'Unreplied', 'cc' ); ?></option>
<?php do_action( 'bp_forums_directory_order_options' ); ?>
</select>
</li>
</ul>
</div>