I found the answer from Hockeyhero4 – Sorting the widget taxonomies
THE END ALL FIX TO EVERY PROBLEM was this:
$terms = get_terms( $tax, array( ‘orderby’ => ‘id’, ‘order’ => ‘ASC’, ‘number’ => 100, ‘hierarchical’ => false ) );
I changed it to:
THE END ALL FIX TO EVERY PROBLEM was this:
$terms = get_terms( $tax, array( ‘orderby’ => ‘slug’, ‘order’ => ‘ASC’, ‘number’ => 100, ‘hierarchical’ => false ) );
Works great.
Thank you so much hockeyhero4.