Magentoのページでカスタマイズ可能な連絡フォームを使用することはできますか?Magentoのページでカスタマイズ可能な連絡フォームを使用することはできますか?
それが可能だ場合:
- 私はこれをサポートするためにどのようなアクションを呼び出す必要がありますか?
- カスタマイズ可能なフォーム要素を使用することはできますか、またはMagento標準を使用する必要がありますか?
私は私のページに使用していますフォーム:
<form action="" method="post">
<input type="hidden" name="formID" value="20642064378453">
<div class="form-all">
<ul class="form-section">
<li class="form-line" id="id_8">
<label class="form-label-left" id="label_8" for="input_8"> Full Name </label>
<div id="cid_8" class="form-input"><span class="form-sub-label-container"><input class="form-textbox" type="text" size="10" name="q8_fullName8[first]" id="first_8">
<label class="form-sub-label" for="first_8" id="sublabel_first"> First Name </label></span><span class="form-sub-label-container"><input class="form-textbox" type="text" size="15" name="q8_fullName8[last]" id="last_8">
<label class="form-sub-label" for="last_8" id="sublabel_last"> Last Name </label></span>
</div>
</li>
<li class="form-line" id="id_1">
<label class="form-label-left" id="label_1" for="input_1">
Name<span class="form-required">*</span>
</label>
<div id="cid_1" class="form-input">
<input type="text" class="form-textbox validate[required]" id="input_1" name="q1_name" size="20">
</div>
</li>
<li class="form-line" id="id_3">
<label class="form-label-left" id="label_3" for="input_3">
Email<span class="form-required">*</span>
</label>
<div id="cid_3" class="form-input">
<input type="text" class="form-textbox validate[required]" id="input_3" name="q3_email" size="20">
</div>
</li>
<li class="form-line" id="id_4">
<label class="form-label-left" id="label_4" for="input_4"> Topics </label>
<div id="cid_4" class="form-input">
<select class="form-dropdown" style="width:150px" id="input_4" name="q4_topics">
<option> </option>
<option value="Option 1"> Option 1 </option>
<option value="Option 2"> Option 2 </option>
<option value="Option 3"> Option 3 </option>
</select>
</div>
</li>
<li class="form-line" id="id_5">
<label class="form-label-left" id="label_5" for="input_5"> Other Options </label>
<div id="cid_5" class="form-input">
<div class="form-single-column"><span class="form-radio-item" style="clear:left;"><input type="radio" class="form-radio" id="input_5_0" name="q5_otherOptions" value="Option 1">
<label for="input_5_0"> Option 1 </label></span><span class="clearfix"></span><span class="form-radio-item" style="clear:left;"><input type="radio" class="form-radio" id="input_5_1" name="q5_otherOptions" value="Option 2">
<label for="input_5_1"> Option 2 </label></span><span class="clearfix"></span><span class="form-radio-item" style="clear:left;"><input type="radio" class="form-radio" id="input_5_2" name="q5_otherOptions" value="Option 3">
<label for="input_5_2"> Option 3 </label></span><span class="clearfix"></span>
</div>
</div>
</li>
<li class="form-line" id="id_7">
<label class="form-label-left" id="label_7" for="input_7"> Message </label>
<div id="cid_7" class="form-input">
<textarea id="input_7" class="form-textarea" name="q7_message" cols="40" rows="6"></textarea>
</div>
</li>
<li class="form-line" id="id_2">
<div id="cid_2" class="form-input-wide">
<div style="margin-left:156px" class="form-buttons-wrapper">
<button id="input_2" type="submit" class="form-submit-button">
Submit Form
</button>
</div>
</div>
</li>
<li style="display:none">
Should be Empty:
<input type="text" name="website" value="">
</li>
</ul>
</div>
<input type="hidden" id="simple_spc" name="simple_spc" value="20642064378453-20642064378453">
<script type="text/javascript">
document.getElementById("si" + "mple" + "_spc").value = "20642064378453-20642064378453";
</script>
</form>
ありがとうございました!
こんにちはVinai、私はちょっと混乱していると私は私がやったことは本当にばかだと感じ...私は、実際のページにこれを置くことができますか、私はそれのためにPHTMLを作成する必要がありますか? ここに私がしたことがあります。 http://jsbin.com/utesik/ - これは私のマゼンタのページの中の実際のフォームです。 ありがとうございます! – Pennf0lio
コードは 'Mage_Contacts_IndexController :: postAction()'からのものです。フォームに入れるべきではありません。フォームの中にどのフィールドを配置する必要があるかを示すだけで、コントローラーのアクションはフォームを使用してフォーム上で動作します。 – Vinai
ああ...申し訳ありませんが... :) – Pennf0lio