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.

Gravity Forms Stripe Add-On Integration

  1. Naomi
    Member

    Hello, I just finished integrating the Stripe Add-On with User Registration.

    To allow for additional payment gateways to delay user registration, will you add the following filter and check in GFUser::gf_create_user, after line 1744 (the PayPal delay code):

    $payment_gateway_config = apply_filters( 'gform_user_registration_delay', false, $form, $entry, $fulfilled );
    
    if ( $payment_gateway_config )
     return;
    Posted 11 years ago on Wednesday August 22, 2012 | Permalink
  2. Naomi, do you have a link to the plugin page?

    Posted 11 years ago on Wednesday August 22, 2012 | Permalink
  3. Naomi
    Member

    Hi Chris, this code needs to be added to the User Registration Add-On.

    Posted 11 years ago on Wednesday August 22, 2012 | Permalink
  4. Oh, sorry. Thanks for the clarification. I'll leave this topic open for discussion.

    Posted 11 years ago on Wednesday August 22, 2012 | Permalink
  5. Naomi
    Member

    Hi Chris, just want to check back in and see whether you are going to add this filter to the User Registration Add-On?

    Posted 11 years ago on Thursday August 23, 2012 | Permalink
  6. Hi Naomi,

    We will take a look and confirm. I've just heard from one of my freelance clients that they've enjoyed your GF Stripe Add-on very much. :)

    Posted 11 years ago on Thursday August 23, 2012 | Permalink
  7. Naomi
    Member

    David, that is awesome! I love to hear that kind of feedback :-)

    Posted 11 years ago on Thursday August 23, 2012 | Permalink
  8. Hi Naomi,

    This hook will be available in the next version of the add-on below the PayPal config delay:

    // provide filter to allow add-ons to disable registration if needed
    $disable_registration = apply_filters('gform_disable_registration', false, $form, $entry, $fulfilled);
    
    if($disable_registration)
            return;

    We just changed the name to be consistent with similar hooks that provide similar functionality in other areas of the GF product line. :)

    Posted 11 years ago on Thursday August 23, 2012 | Permalink
  9. Naomi
    Member

    Super! My first Gravity Forms code submission :-)

    Posted 11 years ago on Friday August 24, 2012 | Permalink
  10. Yes ma'am. Thanks for contributing! :)

    Posted 11 years ago on Friday August 24, 2012 | Permalink

This topic has been resolved and has been closed to new replies.