Anonymous User 18525946
(@anonymized-18525946)
Hey again, @m266 👋
Hmm. Forms should be saved, so something is playing up. Sorry about that!
Just to double-check, are you using the free version? And can you please let us know the names of any other plugins you have enabled?
Thanks a bunch.
Thread Starter
m266
(@m266)
Hi Scott,
I use the free version. My own forms are saved in the database in wp_posts and deleted again when you uninstall this plugin. Perhaps a clear indication is good to save the own forms before deleting the plugin, if necessary.
Testet in a new wordpress installation without other plugins in my local system.
Thread Starter
m266
(@m266)
Addendum:
Backup forms…
Restore forms…
My Tutorial in german; you can translate self with google.
Hey @m266! 👋
Our free version cleans things up when you uninstall it — but you can stop this behavior with a simple hook. Try popping the below snippet in your functions.php file:
remove_action( 'happyforms_uninstall', 'happyforms_uninstall_cleanup' );
That should hopefully do the trick.
Thread Starter
m266
(@m266)
Hi Ignazio,
I think, this snippet is right:
function remove_my_action() {
remove_action( ‘happyforms_uninstall’, ‘happyforms_uninstall_cleanup’ );
}
See here…
But it don’t works:
When I deactivate and activate plugin “HappyForms”, I found my forms again.
When I delete plugin “HappyForms” and new install, my forms are delete.
I think, it is to difficult and I give up.
Thanks for your help.