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.
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