Hello,
I have a function set up to trigger when a PayPal transaction completes using the gform_paypal_fulfillment hook:
/* FUNCTION TO INCREASE ACCOUNT BALANCE */
add_action("gform_paypal_fulfillment", "credit_account", 10, 4);
function credit_account($entry, $config, $transaction_id, $amount) {
This worked fine when I was using the standard PayPal add-on. Now that I have switched over to PayPal Pro, the hook does not seem to be triggering.
Best,
tomdaq