Hi!
I am using Sage 10 with acf composer.
After the last update of ACF PRO to version 5.11, there was a problem with reading the fields.
I cannot read the values of some fields. The return is NULL.
example in functions.php
$account_page = (is_array($account_page)) ? $account_page['url'] : $home_url;
define('ACCOUNT_PAGE', $account_page);
The same is the case with the php script that handles the form
session_start();
include 'vendor/autoload.php';
use Hybridauth\Hybridauth;
$google_login = (get_field('google-login-api', 'option')) ?? null;
How to fix this in acf-composer?
Issue in ACF GH - get_field returns null after upgrading to v5.11 · Issue #570 · AdvancedCustomFields/acf · GitHub