I would like to order the latest portpolio widget by title rather than date. Can I do that?
Open up wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and replace
$additional_loop = new WP_Query("cat=".$cat."&posts_per_page=".$count);
with
$additional_loop = new WP_Query("cat=".$cat."&order=ASC&orderby=title&posts_per_page=".$count);