Hello, I have the same problem.
The point is that the translated gallery don’t change the order even manually.
Ok… I can try! Wait me a couple of days. Ok?
So… I can be your man!
Do you have some step-by-step indications to “record” the problem and give to you something of “report”?
Ok, thank you: I’ll try!
It works on local and fresh installation but not in the production site with custom theme and some plugins.
I deactivated all the plugin except ACF Pro and reactivated the default theme: It still not work.
Emh… no… same problem!
Ok… done some test…
Seems that the problem is the field name demo
: can you try?
Same thinks for URL or Text.
Sorry… I had an answer by this thread
http://support.advancedcustomfields.com/forums/topic/meta-query-for-post-object/
and by this resource
http://www.advancedcustomfields.com/resources/querying-relationship-fields/
$autore = get_the_ID();
$args = array(
'post_type' => 'libri',
'post_status' => 'publish',
'order' => 'DESC',
'orderby' => 'date',
'ignore_sticky_posts' => true,
'posts_per_page' => -1,
'meta_query' => array(
array(
'key' => 'autori',
'value' => '"' . $autore . '"',
'compare' => 'LIKE'
))
);
$libri = new WP_Query( $args );
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.