Hi,
Thanks for your having patience, I have just adjusted sorting using the below code putting in your theme functions.php
add_action( 'pre_get_posts', 'wpdm_sort_staff_cat' );
function wpdm_sort_staff_cat( $query ) {
if ( $query->is_tax() || $query->is_post_type_archive('wpdmpro') ) {
$query->set('orderby', 'title');
$query->set('order', 'desc');
}
}
Thanks.