I would like a trigger, if a user account is updated.
That way i cam then use rules to look for meta.
I use ACF a lot with automatewoo. To be able and run a workflow after updating user account would be very helpful as daya is not always available upon first creation.
Open
Last updated: May 28, 2019
Log in to comment on this feature request.
I was able to get this working using the linked examples above. Copy and paste as written, but in place of a custom function under the register hooks function, I used ‘profile_update’
Works like a charm.
public function register_hooks() {add_action( ‘profile_update’, array( $this, ‘catch_hooks’ ) );}
I’m fairly handy with PHP and thought I could get this working following https://automatewoo.com/docs/triggers/custom-triggers/ and https://codex.wordpress.org/Action_Reference/profile_update
No luck so far, but I think I’m on the right track.
Seems like a fairly easy trigger to add though.