Just noticed this warning blowing up the server Error Log on a GoDaddy hosted site for my client.
PHP Warning: The magic method FCP\Singleton::__wakeup() must have public visibility in /public_html/wp-content/plugins/acf-flexible-content-preview/classes/singleton.php on line 60
Is there an easy fix for this I can do myself?
]]>ACF content open in popup ?
Can it be an option ?? not shure i like it
thanks,
great plugin !!
The plugin indicates that the ACF version should be 5.6.0 or above if you have a ACF version of 5.10
I suggest use the version_compare function on requirements.php:21
]]>I have been reviewing a flexible content within a repeater type field, however the previous image for these flexible content within other fields (in this case repeater) does not work.
The logic that I saw in your plugin is that it only works for the first fields since it has a conditional that checks if the field type is “flexible-content”, therefore it will never enter the repeater.
I appreciate information about it or give you an idea for improving the plugin
]]>Hi. Great plugin. I have got this working nicely across a few sites, however I have a few flexible components which have a number at the start of the name 50-50-cta
for example. The preview image does not work for these components. Are you aware of the issue, is there anything that can be done to fix this.
Thanks in advance.
Hi,
Filter to change path is not working, I think there is an issue with the coding.
https://prnt.sc/v4c2bq
I’ve noticed that your plugin enqueues its javascript across the whole admin.
However it requires the acf scripts to run first so on many of the pages it causes an error.
Instead of enqueueing everywhere could you only enqueue with ACF
I believe you could achieve this by changing the follow
classes/main.php line 9 – 10
add_action( 'admin_footer', [ $this, 'register_assets' ], 1 );
add_action( 'admin_footer', [ $this, 'enqueue_assets' ] );
to
add_action( 'acf/enqueue_scripts', [ $this, 'register_assets' ], 1 );
add_action( 'acf/enqueue_scripts', [ $this, 'enqueue_assets' ] );
]]>
After updating to the latest version, 1.0.2 of the plugin, I am now seeing 10 instances of the following error in the admin of any page that uses ACF fields, as well as Field Group pages.
Notice: Undefined index: ID in /wp-content/plugins/advanced-custom-fields-pro/includes/acf-field-functions.php on line 361
It is the exact same Notice all 10 times.
At first I thought it was an issue with ACF, but when I deactivate your plugin (Flexible Content Preview for Advanced Custom Fields) the error goes away.
]]>