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.

User Registration Trial

  1. travin
    Member

    Is it possible to trial the user registration plugin before purchase?

    Posted 13 years ago on Friday April 22, 2011 | Permalink
  2. There is no trial of any of the plugins. When you purchase you get the source code, we don't encrypt the code so there is no way to provide a free trial. If you have any questions let me know and i'd be glad to answer them.

    If you own Gravity Forms you can view documentation for the User Registration Add-On in the Documentation area here:

    http://www.gravityhelp.com/documentation/page/User_Registration_Add-On

    Posted 13 years ago on Friday April 22, 2011 | Permalink
  3. travin
    Member

    Ok. Here is what I am trying to accomplish. I use s2Member for my membership plugin. I use iDev for my affiliate tracking of registrations. I do not charge for memberships. So, here is the nitty-gritty:

    I want to use this plugin for all my membership registrations. I use the s2Member notification system to alert iDev of a member's. I use a 3rd party call in the following format:

    http://www.freeclassifiedproducts.com/affiliate/sale.php?profile=72198&idev_saleamt=5.00&idev_ordernum=%%user_login%%&ip_address=%%cv1%%

    In the current sign up form, this code gets the ip address (i place it in the sign up form that s2Member Pro allows me to generate):

    custom="www.freeclassifiedproducts.com|<?php echo $_SERVER["REMOTE_ADDR"]; ?>"

    So, if I can make the user registration do the same thing or pass the same variable the same way, that would be perfect. I do own Gravity Forms, just not the developer. I do know that I can capture the new member's IP address but not sure exactly how to pass that.

    Can User Reg fill these requirements for me?

    Posted 13 years ago on Friday April 22, 2011 | Permalink
  4. It would be possible to do but you'd have to use one of the User Registration API hooks to execute custom code when a user is registered that passes information to iDev when the user is created.

    Documentation for the User Registration API hooks and filters can be found here:

    http://www.gravityhelp.com/documentation/page/User_Registration_Add-on_Developer_Docs

    So yes it's possible, but it isn't something it does out of the box as it's a customization so it requires some custom code to integrate with whatever service you need to integrate with.

    Posted 13 years ago on Friday April 22, 2011 | Permalink
  5. travin
    Member

    Hey there again. Back on this topic real quick to see if there is an easy fix. According to the folks at s2member, all I need to do in order to make gravity forms work the way I need is to add this to my form:

    <input type="hidden" name="custom" value="<?php echo $_SERVER['HTTP_HOST'], '|', $_SERVER['REMOTE_ADDR']; ?>" />

    Now, I know the gravity forms already has a "hidden" field that I can select for the client ip address. Is there a simple way to take that field value and pass it to this somehow or rename gravity forms field to "custom"?

    s2Member has a notification system that I have working with iDev as is, but I have to use their forms (which lack the options your forms have). I just need to get the ip address into this variable or whatever it is.

    Thanks

    Posted 13 years ago on Wednesday April 27, 2011 | Permalink
  6. Here is a forum post that discusses how to populate a hidden field dynamically using PHP:

    http://www.gravityhelp.com/forums/topic/how-do-you-add-a-php-variable-as-a-hidden-input-field

    Posted 13 years ago on Wednesday April 27, 2011 | Permalink