Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: item portfolio navigation buttons #424569

    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;
    }

    in reply to: item portfolio navigation buttons #422716
    This reply has been marked as private.
    in reply to: item portfolio navigation buttons #422715

    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…

    • This reply was modified 9 years, 7 months ago by wellenwerk.
Viewing 3 posts - 1 through 3 (of 3 total)