
-
AuthorPosts
-
February 26, 2025 at 11:06 pm #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.
February 27, 2025 at 6:54 am #1478085Hey 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,
IsmaelMarch 12, 2025 at 2:43 am #1479119Thanks 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.
March 12, 2025 at 7:10 am #1479133Hi,
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,
IsmaelMarch 12, 2025 at 7:14 am #1479135Hi 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?
March 12, 2025 at 7:19 am #1479138Hi!
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!
IsmaelMarch 13, 2025 at 5:10 am #1479208HI 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.
March 14, 2025 at 7:59 am #1479320Hi,
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,
IsmaelMarch 17, 2025 at 12:42 am #1479491Hi Ismael,
Thank you so much for your assistance on this!
I am now able to adjust the order of my portfolio items.
March 17, 2025 at 10:58 am #1479520 -
AuthorPosts
- The topic ‘Order of portfolio items in Post Slider’ is closed to new replies.