The plugin loads itself too late.
For example, Restrict Content Pro adds this hook add_action('init', 'rcp_process_lostpassword_form') to send email in some cases. But it does not work, because Sendgrid is not yet loaded. I needed to remove the action and add it back with priority 999 to get emails out.
The plugin loads itself too late.
For example, Restrict Content Pro adds this hook
add_action('init', 'rcp_process_lostpassword_form')to send email in some cases. But it does not work, because Sendgrid is not yet loaded. I needed to remove the action and add it back with priority 999 to get emails out.