Hi, yes you could. but need some code hacking. please try this:
-in portfolio module setting, option ‘order by’ leave it ‘please select’;
-open file functions/functions-view-module.php and find line 596(or about):
if($module_select_orderby != '-1'){
$orderby = $module_select_orderby;
}else{
$orderby = 'none';
}
update it with:
if($module_select_orderby != '-1'){
$orderby = $module_select_orderby;
}else{
$orderby = 'post_name';
}
this will make order by post slug.
Best