You can delete the following options via wp-cli.
wp option delete hcaptcha_settings
wp option delete hcaptcha_versions
wp option delete hcaptcha_login_data
Thanks for the details 🙂
When i paste this command in PhpMyadmin>SQL, its showing one error; https://prnt.sc/fbUAIaZ7o7HN
Can you please provide me the SQL query to wipe all the hCaptcha database entries?
Assuming that your tables’ prefix is wp_, the following MySQL request should work
DELETE FROM wp_options
WHERE option_name IN ('hcaptcha_settings', 'hcaptcha_versions', 'hcaptcha_login_data');
Oh, I forgot about the last option and the table. 😅 Nothing else, you are done.
Thanks.
I will add the code to cleanup data upon deletion of the plugin.
Thant would be great, thank you 🙂