Hello @jenish11,
Thank you for reaching out to us!
Can you please let us know if when you disable acf extended your posts are ordered properly?
Thank you,
Beatrice.
I created all my custom post type with acf extended. If I deactivate the plugin then there wont be any cpt to test on.
So instead I tested on default post type and re-order is working properly. Only the post types made with acf extended is having reorder issue. I mean I can reorder them by dragging and dropping but when I reload they return to their original order.
Hello,
ACF Extended developer here 🙂 You’re right, ACF Extended allows you to set a custom orderby & order for the admin list screen. By default, it is set to date DESC (default WordPress behavior).
In order to use Simple Custom Post Order in combination with the ACF Extended, you’ll have to set the Order By to menu_order and the Order to ASC in the Post Type UI.
See screenshot: https://i.imgur.com/6nTADGI.jpg
It looks like the problem come from the fact that Simple Custom Post Order check if the query doesn’t have any orderby & order parameter set before trying to applying its own menu_order ASC in the pre_get_posts hook. Since ACF Extended set those parameters, Simple Custom Post Order has no effect.
Hope it helps!
Have a nice day!
Regards.
Thank you for the help. It worked.