Tanks a lot – this is working for me… ;)
define sortorder of the portfolio page navi:
add_filter( ‘avia_post_nav_entries’, ‘enfold_customization_reverse_post_nav’, 10, 1 );
function enfold_customization_reverse_post_nav( $entries ) {
$prev = $entries[‘prev’];
$next = $entries[‘next’];
$entries[‘prev’] = $next;
$entries[‘next’] = $prev;
return $entries;
}
This seems to be the same Problem. Since Update on 3.1.3 by using “Portfolio Raster” and sorting by Date in descending order. The Portfolio Elements will shown correct, but the Page Navigation is now working in ascending order…