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.

Please can you help me with my question?

  1. inmoenred
    Member

    As I can do to make a form field, collect the user level wordpress on my site and incorporate it automatically when you open the introductory page of the form in front

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink
  2. You can set the default value of that field to available default variables, including some user information.

    Add a text field to your form. Edit the field, select the Advanced tab. Under Default Value use the "Insert variable" drop down above it to insert a merge code, there are 3 user related variables you can use. See this screenshot for an example:

    http://grab.by/9nGS

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink
  3. inmoenred
    Member

    Thanks again Carl.
    I have saved, had not fallen into that could modify the variable.
    For this: {user:user_level}

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink
  4. inmoenred
    Member

    as can be redirected to a page from the form, according to the value of one of its fields.
    For example, if a user's level is 10 go to this site or otherwise if the value is 5, redirect to this one.
    Thanks

    Posted 13 years ago on Friday March 11, 2011 | Permalink
  5. Conditional redirects are not a built in feature. If you wanted to do this you would have to write your own customization by creating a custom PHP page that you pass the field value to and then write your own custom PHP to redirect to the appropriate page based on the value that is passed to it.

    We do plan on implementing conditional confirmations in a future release.

    Posted 13 years ago on Friday March 11, 2011 | Permalink
  6. inmoenred
    Member

    I could you give an example of how code should please be forwarding this page.
    Thanks

    Posted 13 years ago on Saturday March 12, 2011 | Permalink
  7. You would use the Confirmation Redirect feature of the Confirmation settings. You would enter the URL to your custom PHP page. You would then use the query string builder tool below the URL field to create the query string that is passed to that PHP page.

    Example: Field={My Field:1} so when the redirect happens it passes ?field=value to your redirect page. You would then write custom PHP on your custom PHP redirect page to read that query string value and redirect to the appropriate page based on the value.

    Posted 13 years ago on Monday March 14, 2011 | Permalink