Hi, my objective is to allow my registered WordPress users to subscribe (change roles). I am not wanting to use the registration addon because the members are already registered.
My gravity form is simply setup to pass some hidden variables for later processing.
When I get a new subscriber, these are the only hooks I need to be concerned with, correct?
gform_paypal_fulfillment
gform_subscription_canceled
I have a new plugin setup to change the user's status to paid and unpaid accordingly using those two hooks. As far as I know, gform_paypal_fulfillment is for completed payments. Therefore I can simply change the user's role with it. Is that the proper hook for doing so?
Lastly, I don't think I need a notice for the repeated payments every month, I just need to catch the cancellation with gform_subscription_canceled. Does this also sound right?