Hi there,
Thank you for reporting, we are looking into it.
A temporary fix I found for if a website experiences a critical error due to this plugin is to un-install via hosting file manager (or something like FTP) and to re-install it. Seems to be only crashing only when updating on an existing install.
-
This reply was modified 1 hour, 44 minutes ago by
jaredush.
Same problem here.
fs_dynamic_init() is already declared by another plugin which doesnt check if the function exists. So when your plugin is loaded sooner, it will create this function and afterwards they will create the same.
The problem in this case is with the other plugin. BUT. When the also check if it exists they use your fs_dynamic_init() function because your plugin is loaded sooner. This can also create errors because the functions can differ.
Please prefix your functions, this will prevent compatibility issues with other plugins.
So make it for example: wpcf7_fs_dynamic_init()
I’ve also created a topic for the other plugin with the same problem.
Cheers!
Erik
Hi there,
The most recent release fixes this issue.
Thank you!