Hello,
Thanks for the feedback!
It looks like your question is related to ACF, and not the ACF Extended plugin, as the version 5.x.x & 6.x are the ACF versions.
I would recommend to contact the ACF Support here, they will be able to provide you assistance.
As a side note, generally speaking the “Allowed memory size” error has two possible cause:
- You don’t have enough memory to execute your website code
- OR you have a PHP script that run in an infinite loop and eat all your memory
For the first cause, you can try to increase your memory limit in your wp-config.php
using the following code:
define('WP_MEMORY_LIMIT', '256M');
See related article.
If that doesn’t fix the issue, maybe its because of the second reason. In this case, in order to isolate the issue, I would recommend clone your website on a development / staging environment using Duplicator, or your hosting backup solution. Then try to disable all your plugins one-by-one (at the exception of ACF Pro) until you find which one cause the issue.
If the problem persists, I would suggest switch to the native WP Twenty Twenty Two theme, to make sure you don’t have any custom code in your theme which would break the website.
Hope it helps!
Have a nice day!
Regards.