We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This error appears in the console for a field group with the option "translation of standard field types" enabled:
Cannot read properties of undefined (reading 'id')
There's a regression with acf.findFields in ACF6 returning unexpected elements such as data-type="tab". Reported here: AdvancedCustomFields/acf#765
acf.findFields
data-type="tab"
Moreover qTranslate should not use acf.get_fields, that is an internal function not part of the API. The correct functions to use are acf.getFields or acf.findFields. https://www.advancedcustomfields.com/resources/javascript-api/#functions-getfields
acf.get_fields
acf.getFields
The text was updated successfully, but these errors were encountered:
Fix JS error reading 'id' with ACF6 (#1254)
8df9eab
Use proper API with `acf.findFields` and not `acf.get_fields`.. Add better checks for translatable fields and form.
The fix in #1255 filters the child elements with another selector so the bug reported in AdvancedCustomFields/acf#765 is not impactful for now.
Sorry, something went wrong.
No branches or pull requests
This error appears in the console for a field group with the option "translation of standard field types" enabled:
There's a regression with
acf.findFields
in ACF6 returning unexpected elements such asdata-type="tab"
.Reported here: AdvancedCustomFields/acf#765
Moreover qTranslate should not use
acf.get_fields
, that is an internal function not part of the API.The correct functions to use are
acf.getFields
oracf.findFields
.https://www.advancedcustomfields.com/resources/javascript-api/#functions-getfields
The text was updated successfully, but these errors were encountered: