Hi At the moment the plugin does not allow to order by `name` I suggest changing `class-woothemes-our-team.php` at line 586 ``` // Whitelist checks. if ( ! in_array( $query_args['orderby'], array( 'none', 'ID', 'author', 'title', 'date', 'modified', 'parent', 'rand', 'comment_count', 'menu_order', 'meta_value', 'meta_value_num' ) ) ) { $query_args['orderby'] = 'date'; } ``` Looks like just adding `name` to it works ``` // Whitelist checks. if ( ! in_array( $query_args['orderby'], array( 'none', 'ID', 'author', 'title', 'name', 'date', 'modified', 'parent', 'rand', 'comment_count', 'menu_order', 'meta_value', 'meta_value_num' ) ) ) { $query_args['orderby'] = 'date'; } ```
Hi
At the moment the plugin does not allow to order by
nameI suggest changing
class-woothemes-our-team.phpat line 586Looks like just adding
nameto it works