Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #213623

    Is it possible to use taxonomy other than Portfolio Category in a portfolio grid? I am assigning some items to one, which requires a second category tag, but both show up in the breadcrumb.

    http://subterranea.net/vusa2/products/clarissa-72-md-415/

    #213625

    also… is it possible to randomize the items chosen to display from a category? It always chooses the most recent.

    #213638

    Hi!

    You can use the Blog Posts element instead of the Portfolio Grid. Add this on functions.php to sort the portfolio items.

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

    Cheers!
    Ismael

    #213669

    Thank you!

    You guys are awesome. Let me try.

    Here’s another. Is there a simple addition to add to functions.php that will change the Masonry gallery to infinite scroll rather than ‘Load More’ button?

    Should I post this as a new item?

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Custom Taxonomy in Portfolio Grid’ is closed to new replies.