• When viewing the main Group Management page:

    • clicking the Group ID heading sorts in descending order, expected ascending
    • clicking the Date Created heading sorted by Group ID (instead of Date Created)

    Also, clicking the column headings again doesn’t reverse the sort order (expected) although this is really a feature enhancement than a bug perhaps.

    Kind regards

    Chris

    https://www.ads-software.com/extend/plugins/bp-group-management/

Viewing 1 replies (of 1 total)
  • Thread Starter chriskeeble

    (@chriskeeble)

    Update:

    To fix the date issue, update bp-group-management-bp-functions.php

    1. Line 102: change order=group_id to order=newest

    2. Line 71: insert the following code

    else if ( $order == 'newest' )
    			$args['type'] = 'newest';

    The group ID issue is due to line 68:
    $args['type'] = 'newest';

    But the underlying BuddyPress sorting doesn’t appear to offer an ID based sort, so would need further ivestigation to resolve this properly.

    Kind regards

    Chris

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: BP Group Management] BUG: Sorting by Group ID and Date Created’ is closed to new replies.