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.

Posting Month, Day, Year to External Form

  1. I have one quick question...based on this thread.

    http://www.gravityhelp.com/forums/topic/cant-find-any-instructions-to-post-form-data-to-external-url

    I am trying to have my Gravity Form post to an external form / CRM. I can get all of the fields to post...however I need to have the DATE fields post "separately". I can do this by creating 3 simple fields...and having each post...but I would much prefer the nice cleaner look of 3 smaller inline date boxes.

    The form I am posting to is this: http://www.musicaledge1.djintelligence.com/message/

    MY MAIN QUESTION is do I need to "break up" the date field in a fashion like this? This is a portion of my code in the functions.php that was added to post.

    <input type="hidden" name="month" value="<?php echo $entry["13.1"] ?>" />
    <input type="hidden" name="day" value="<?php echo $entry["13.2"] ?>" />
    <input type="hidden" name="year" value="<?php echo $entry["13.3"] ?>" />

    What can I replace the "13.1" "13.2" "13.3" with to make it work? Is it even possible to break up the date field?

    Posted 12 years ago on Wednesday December 21, 2011 | Permalink
  2. I found a solution that work. I used the inline pre-styles and just created 3 different dropdown categories that emulated the date field.

    Posted 12 years ago on Thursday December 22, 2011 | Permalink
  3. Great. Glad you were able to find a workaround for your situation.

    Posted 12 years ago on Thursday December 22, 2011 | Permalink

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