Can't get access to ACF gallery field from a translated page.
-
I am using ACF gallery field to create a slider to be displayed on both language versions of a page.
I can access this field, with this function:
get_field('gallery');
from a page with default language no problem, but wasn’t able to do it on the translated page – it returns an empty array.The strange part is that I can’t get gallery field from a translated page even if I use the id of the page with default language, like so:
get_field('gallery', $page_id);
Even more strange – I created a gallery field in ACF ‘Option page’, and have no problem to access it from page with default language, using this:
get_field('gallery', 'options');
But on the translated page this function still returns an empty array.I must say there is no problem to access any other ACF field from translated page, but only gallery field.
Why is that gallery field have this issue, but not any other type of ACF fields?
- The topic ‘Can't get access to ACF gallery field from a translated page.’ is closed to new replies.