Woocommerceの問い合わせフォームを作る

このような問い合わせページを作ってお客さんからの問い合わせを受けます。

Contact Form 7

富士山アイコンに日本を誇りに感じさせるお問い合わせフォームプラグイン。操作が簡単なのでおすすめ。ドキュメントやQ&A 公式ブログ、その他使い方指南がたくさんあるので困ることはない。

Contact Form 7の使い方

公式 https://contactform7.com/ja/docs/

公式Q&A https://contactform7.com/ja/faq/

お問い合わせのメールフォーマット

<dl class="contactList">
<dt>お名前 (漢字) <span class="hissu">必須</span></dt>
<dd>[text* your-name]</dd>
<dt>お名前 (カナ) <span class="hissu">必須</span></dt>
<dd>[text* kana]</dd>
<dt>メールアドレス <span class="hissu">必須</span></dt>
<dd>[email* your-email]</dd>
<dt>お電話番号 <span class="ninni">任意</span></dt>
<dd>[text tel]</dd>
<dt>お問い合わせ内容 <span class="hissu">必須</span></dt>
<dd>[textarea* your-message]</dd>
</dl>

<div class="check">[acceptance acceptance-0]<span class="text">入力内容をご確認の上、チェックを入れて送信してください。</span>
[submit "上記内容で送信する &raquo;"]</div>

毎回以前作ったメールフォーマットをコピペして使っています。

『 (お店の名前をここに入れる) 』よりお問い合わせがありました。
担当者は早急の対応をお願いいたします。


━━━━━━━━━━━━━━━━━━━━━━━━━

お名前 (漢字) : [your-name]
お名前 (カナ) : [kana]
お電話番号 : [tel]
メールアドレス : [your-email]

お問い合わせ内容 : 
[your-message]

━━━━━━━━━━━━━━━━━━━━━━━━━

メール本文は、お客さんから来るメールのフォーマット。お客さんへの返信メールにこのメールを引用したりするので、体裁はキチンとしておこう。

Contact Form7用CSS サンプル

実際に私が作って利用しているCSSを2種類紹介します。そのまま使っていただいて結構です。

パターン1 実装ページはこちら

/************************************
** 問い合わせ
************************************/
/*問い合わせレイアウト*/
dl.contactList dt:not(:first-child){
	margin-top:20px;
}
dl.contactList dt span.hissu, dl.contactList dt span.ninni  {
    font-size: 0.6em;
    font-weight: bold;
    color: #fff;
    margin-left: 20px;
    padding: 4px;
    border-radius: 0.375rem;
    position: absolute;
    left: 160px;
}

dl.contactList dt span.ninni {
    background: #999;
}
dl.contactList dt span.hissu {
    background: #F90;
}

パターン2 実装ページはこちら

/*------------------------------------------------------------
	固定ページ:お問い合わせ
------------------------------------------------------------*/
#contactBox .topLink {
	text-align: center;
	margin: 50px 0 20px !important;
}

/* お問い合わせフォーム */
.contactText {
	margin: 20px 0 0 !important;
	padding: 0 0 15px;
  border-bottom: solid 1px #CCC;
}
dl.contactList input {
	border: 1px solid #CCC;
	padding: 8px;
	font-size: 16px;
	width: 70%;
	border-radius: 3px;
  -webkit-appearance: none;
}
dl.contactList textarea {
	border: 1px solid #CCC;
	padding: 8px;
	font-size: 16px;
	width: 80%;
	border-radius: 3px;
  -webkit-appearance: none;
}
dl.contactList dt {
  clear: left;
  float: left;
  width: 13em;
  margin-top: 6px;
  padding: 10px 0.5em;
  position: relative;
}
dl.contactList dd {
  margin-left: 0;
  padding: 10px 0.5em 10px 13em;
  border-bottom: solid 1px #CCCCCC;
}
dl.contactList dt span.hissu,
dl.contactList dt span.ninni {
	display: inline-block;
	margin: 0 0 0 7px;
	padding: 3px 3px 1px 5px;
	color: #FFF;
	font-size: 12px;
	letter-spacing: 3px;
	border-radius: 3px;
	position: absolute;
	right: 10px;
}
dl.contactList dt span.hissu {
	background: #F90;
}
dl.contactList dt span.ninni {
	background: #FC0;
}
.check {
	text-align: center;
	margin: 30px 0 80px;
	padding: 0;
}
.check span.text {
	margin: 0 0 0 6px;
}
.check input[type="submit"] {
	border-radius: 3px;
	font-size: 14px;
	cursor: pointer;
	margin: 15px 0 0;
	padding: 12px 30px;
	border: #CCC 1px solid;
	background: #E1E1E1;
	color: #333;
	transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.check input[type="submit"]:hover {
	background: #C8C8C8;
}
.check input[type="checkbox"] {
	border: #999 1px solid;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
}

/* プラグイン・コンタクトフォーム用 */
div.wpcf7-mail-sent-ok,
div.wpcf7-response-output {
	display: none !important;
}

/* 入力チェック部分 */
span.wpcf7-list-item {
	margin: 0 !important;
}