PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Using Gravity with 3rd Party Customer Management System

  1. harv9631
    Member

    I use a third party customer management system which requires that the IPN setting in PayPal is used. Since using first wufoo forms, and now gravity forms, I am no longer receiving transactions into the third party CMS. They suggested it could be that the form provider is setting the 'notify_url' setting, which completely overrides any setting in my PayPal account. Can I override this in Gravity forms?

    Please Help - Thanks

    Nick

    Posted 12 years ago on Thursday December 15, 2011 | Permalink
  2. Modifying the notify_url parameter in the order data sent to PayPal will prevent Gravity Forms from receiving the IPN Notification from PayPal when the order is completed. With that said... it's technically possible to do by passing appending a custom notify_url parameter via the gform_paypal_query hook:

    [php]
    add_filter('gform_paypal_query', 'update_notify_url');
    function update_notify_url($query_string) {
        return $query_string . '&notify_url=http://yournotifyurl.com';
    }
    Posted 12 years ago on Thursday December 15, 2011 | Permalink