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.

Formatting issues and priting text field info

  1. vgarcia
    Member

    I have a 3 step form. My first issue is that I am using the address field without any customized css... and only the zipcode text field doesn't align properly. I tried adding custom css to my style sheet but can get it to work.
    Second issue is on the 3rd step of the form. I'm showing the terms and conditions and will like to "print" show the name that was previously entered in step 1 and also the the date. Is there any way to do this?

    Thanks any help will be much appreciate it.
    Since this is a site in progress you can access the form here: http://www.advancedartusa.com/teacher-application
    but will need to login in order to see it: http://www.advancedartusa.com/wp-login.php
    user:guest
    pass:advancedartusa

    Posted 12 years ago on Monday December 19, 2011 | Permalink
  2. The issue with the Address field is related to enhancements being applied by your theme or another plugin to the drop down fields in the form. Something is styling the select fields differently and applying a set width.

    This is why the zip code field is bumped down, because the forced width of the state drop down is pushing the zip code down due to how CSS floats work.

    I can't tell if these styles are coming from your theme or another plugin. Most likely your theme. You have to determine what is styling that select input, it's not the default select styles applied by Gravity Forms, and adjust them so it doesn't force the width the way it is doing now.

    As for how to dynamically populate fields on another page of the form from values submitted earlier in the form... you'd have to do this using either jQuery or custom PHP. How comfortable are you with PHP?

    Posted 12 years ago on Monday December 19, 2011 | Permalink
  3. vgarcia
    Member

    Thanks for the prompt response Carl. I was able to fix the css issue. Unfortunately Im not well versed in php but might have someone that can assist me if you could please explain briefly what I have to do. Thanks!

    Posted 12 years ago on Monday December 19, 2011 | Permalink
  4. Hi vgarcia,

    Here is a snippet that will let you populate data from previous pages on your form:

    http://pastie.org/3049175

    This would go in your functions.php file and will need to be adjusted to be specific to your form. Let me know if you have any questions.

    Posted 12 years ago on Tuesday December 20, 2011 | Permalink