@healthysolutions4living
Thanks for the information, Subscribe2 uses the same hook. However it may also be relying on some form data being added to the submission that is not currently on your sites form.
Usually, there are 2 options for Auto-Subscribe:
Display option on Registration Form
No
If you have disabled the GDPR compliance check there will also be a Yes
option. If the setting is Yes
it should all work, if the option is No
it obviously won’t.
If however the third option above is selected – Display option on Registration Form
you may need to add the following to your themes function.php file or a custom plugin:
global $mysubscribe2;
add_action( 'um_after_register_fields', array( $mysubscribe2, 'register_form' ) );
If that doesn’t work it may also be worth adding this in the same place:
add_action( 'um_user_register', array( $mysubscribe2, 'register_post' ) );