Hi,
Indeed. I guess even such 3rd party extension, also compatible with HikaShop,
extensions.joomla.org/extension/keycaptcha
will have the same issue with silent registrations.
We actually already have a code to skip the catpcha check for the com_updateme component silent registration of a user:
if ($app->isAdmin() || (@$_REQUEST['option']=='com_updateme' && @$_REQUEST['ctrl']=='subscription' && @$_REQUEST['task']=='api')) return true;
So you could add some similar code in the recaptcha2 plugin file but for RS Forms PRO.
You need to know the folder name of RS Forms PRO.
For example:
if ($app->isAdmin() || (@$_REQUEST['option']=='com_rsform') return true;
and add it after the other code in the plugin.