Hi Zenerry, I think I have an answer for you. I have been able to sort the items alphabetically by adding these two lines to the waving-portfolio.php file.
‘orderby’ => ‘title’,
‘order’ => ‘ASC’,
add them to here [starting at line 393]:
$args=array(
‘post_type’ => $type,
‘post_status’ => ‘publish’,
‘posts_per_page’ => -1,
‘orderby’ => ‘title’,
‘order’ => ‘ASC’,
‘waving_portfolio_tag’ => $tagCondition,
‘cache_results’ => false);
You can also order by ‘DESC’ – this post was a useful reference:
https://codex.ww.wp.xz.cn/Class_Reference/WP_Query#Order_.26_Orderby_Parameters