Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1478054

    Hi Kriesi Team,

    I have a post slider on my homepage displaying portfolio items in a 3 column layout with navigation. I was able to arrange my portfolio items in a specific order on the portfolio page using the Post Types Order plugin. However, the same order doesn’t seem to apply to the post slider.

    Could you provide some guidance on how to achieve this? I’ve explored a few plugins, but none seem to resolve the issue. Any advice would be greatly appreciated.

    Thank you so much!

    Since my site is currently set to “Coming Soon” mode, I’ve provided login details for you to access it.

    #1478085

    Hey lara666,

    Thank you for the inquiry.

    You may need to try our suggestion here to enable the Page Order field for the portfolio items: https://kriesi.at/support/topic/portfolio-items-order/#post-1477856

    Then add this filter to order the items by Post Order value:

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
    function avia_post_slide_query_mod($query) {
        $query['orderby'] = 'menu_order';
        $query['order'] = 'ASC'; 
    
        return $query;
    }
    

    Best regards,
    Ismael

    #1479119

    Thanks Ismael,

    I’ve successfully used masonry on the homepage to showcase our portfolio items, sorting them by date to ensure the correct order.

    However, I’d like it to function like the post slider with arrows instead of the “load more” option.

    Can you help me achieve this?

    I’ve attached a screenshot of the masonry and post slider. Also provided login if you need it.

    Thank you so much.

    #1479133

    Hi,

    Thank you for the update.

    I’d like it to function like the post slider with arrows instead of the “load more” option.

    Unfortunately, this would require modifications beyond the scope of support. If you’d like arrows for navigation, you can try using the Post Slider or Content Slider element.

    Best regards,
    Ismael

    #1479135

    Hi Ismael,

    My issue with the post slider is I can use arrow navigation but cannot select order in which they are displayed. In our above chat you mentioned adding this

    add_filter(‘avia_post_slide_query’, ‘avia_post_slide_query_mod’);
    function avia_post_slide_query_mod($query) {
    $query[‘orderby’] = ‘menu_order’;
    $query[‘order’] = ‘ASC’;

    return $query;
    }

    Where do I add this?

    #1479138

    Hi!

    You can add the filter in the functions.php file. This will sort the items based on the value of the Page Order field. You will have to enable this field manually for the portfolio items.

    https://kriesi.at/support/topic/masonry-not-displaying-cover-pictures/#post-1439624

    Cheers!
    Ismael

    #1479208

    HI Ismael,

    Thanks for your message!

    I’ve added the filter to the functions.php file, but I’m unsure how to enable the order field manually for the portfolio items. The option to order items is visible on Pages, but not for my Portfolio Items.

    Sorry if I’m overlooking something.

    Please refer to the screenshots in the private content, along with the login details if you need access.

    #1479320

    Hi,

    You have to add the avf_portfolio_cpt_args_mod function from the previous thread to enable the Page Attributes field for the portfolio items.

    https://kriesi.at/support/topic/masonry-not-displaying-cover-pictures/#post-1439624

    Best regards,
    Ismael

    #1479491

    Hi Ismael,

    Thank you so much for your assistance on this!

    I am now able to adjust the order of my portfolio items.

    #1479520

    Hi,

    Great! Glad to know this has been resolved. Have a nice day.

    Best regards,
    Ismael

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Order of portfolio items in Post Slider’ is closed to new replies.