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.

Admin ONly on Populated Dynamically Fields

  1. jls944
    Member

    I have a form set up so when the user clicks submit it takes them to a more extensive form. The name and address fields on the extensive are populated dynamically from the first form so i don't want the user to be able to see these fields again. If I select 'admin only' on the name and address fields on the extensive form this information isn't viewable in my admin tool (entries section). How can I get these fields to show when the user submits the form?

    Posted 12 years ago on Sunday January 1, 2012 | Permalink
  2. What if you just hid those two fields via CSS? I haven't tried that in this instance but sounds like that could potentially be a solution.

    Posted 12 years ago on Sunday January 1, 2012 | Permalink
  3. jls944
    Member

    Could you guide me on how to do that? Thanks.

    Posted 12 years ago on Sunday January 1, 2012 | Permalink
  4. Sure thing, could you provide me a link to the form.

    Posted 12 years ago on Monday January 2, 2012 | Permalink
  5. jls944
    Member

    sure - http://www.js2homes.com/expanded-seller-info/

    It's the name and address that I want to hide

    Posted 12 years ago on Monday January 2, 2012 | Permalink
  6. Try placing this into your theme's stylesheet:

    [css]
    #field_2_1, #field_2_4 {
    position: absolute;
    left: -9000px;
    display: none;
    }
    Posted 12 years ago on Monday January 2, 2012 | Permalink
  7. jls944
    Member

    perfect. thanks.

    Posted 12 years ago on Tuesday January 3, 2012 | Permalink
  8. Thank you for the update. Glad that worked out.

    Posted 12 years ago on Tuesday January 3, 2012 | Permalink

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