0

現在、gravityforms を使用して複雑なフォームを作成しています。私が必要としているのは、いくつかのテキストがあり、テキストの間にテキスト段落を完成させるためのいくつかの入力フィールドがある領域です。例。

私、「name-inputfield」 __ _ _は、 _ _「text-inputfield」_ __ _ _の間で利用できることに同意します。

私はすでにそれを HTML エディターで作成し、コードを Gravityforms の HTML ボックスに配置しましたが、送信しても情報は配信されません。フォームコード内の何かを忘れていると思います。以下のコードを添付しました

    I, <input type="text" name="" value="NAME"  size="40">(for myself and my heirs and legal representatives) of<br>
<input type="text" name="" value="STREET ADDRESS" size="40"><input type="text" name="" value="CITY" size="20" maxlength="20"><input type="text" name="a78" value="ST"  size="2" maxlength="2"><input type="text" name="" value="ZIP"  size="10" maxlength="10"><br>
hereby release Blanca's house Corp., its agents, representatives, directors, employees, contractors, insurers, and members from any and all responsibility and liability involving arising out of, or related to the planned medical mission scheduled to <span class=""><input type="text" name=" " value="" size="20" maxlength="20">starting on <input type="text" name="" value="" size="20" maxlength="20"> through <input type="text" name="" value=""  size="20" maxlength="20"> 20<input type="text" name="" value="" size="2" maxlength="2">, including (without limitation) liability regarding my health or safety or my personal property.

私はこのようなことをしたことがないので、誰かが私を助けることができれば素晴らしいでしょう. これは、ブラウザ内でどのように見えるかのスクリーンショットでもありますhttp://awesomescreenshot.com/01e2la0ibc 助けてくれてありがとう

4

1 に答える 1

2

HTML フィールドのコンテンツ内の入力は、Gravity Forms によってキャプチャされません。それらは Gravity Forms によって「登録」されていないため、それらが存在することを知りません。

達成しようとしていることには、2 つの選択肢があります。

  1. Gravity Forms を介してフィールドを追加し、インラインになるようにスタイルを設定できます。これを実現する方法の良い例を次に示します:

    http://www.rocketgenius.com/gravity-forms-mad-lib-style-form-demo/

  2. Gravity Forms を介してフィールドを追加し、送信された値を 2 ページ目の HTML フィールドに出力できます。これは、私の製品GP Preview Submissionを使用した例です:

    http://demos.gravitywiz.com/gp-preview-submission/

于 2014-04-04T00:40:29.650 に答える