Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #339588

    I am arranging over a 100 photos that need to be rearranged periodically.

    #339617

    For the main Portfolio page: the various portfolio entries are arranged in ascending chronological order, meaning newest portfolio entry shows first along the left side of the top row, next newest is to the right of that, then so on showing older portfolio entries as you move from left to right down the main filterable portfolio page. To adjust where a specific portfolio entry shows, you’ll need to edit that individual portfolio entry’s ‘Publish Date’, making it newer or older than the entries around it.

    For individual photos within a specific portfolio entry: just drag specific image higher or lower within the ‘Featured Media’ section of the entry. Images will show in order from top to bottom.

    Hope this helps.

    #339914

    Hey!

    Thank you for using Enfold.

    Please use this plugin: https://wordpress.org/plugins/post-types-order/

    Or add this on functions.php:

    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    
    function avf_custom_post_grid_query ( $query ) {
    $query['orderby'] = 'date';
    $query['order'] = 'DESC';
    return $query;
    }

    Refer to this link for more sorting parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Best regards,
    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.