The error is coming from the file /classes/requirements.php on line 21.
The If-Statement compares a String to an Integer which causes the misinterpretation.
I was able to reactivate the Plugin by changing the corresponding line as followed.
if ( '5.6.0' > acf()->version ) {
to
if ( (int)'5.6.0' > acf()->version ) {
It’s just a temporary solution as most devs won’t handle plugins in their repository and therefor changes have to be remade after every new deployment.
-
This reply was modified 3 years, 2 months ago by cmbsmr. Reason: Spelling mistakes and formating
-
This reply was modified 3 years, 2 months ago by cmbsmr.