更新しました
使用の際は必ず検索ページにある検索モジュールの設定でCustom Search Moduleに変更してください。

表示のさせ方 : <!-- cms:id="search_item_name" /-->

表示のさせ方 : <!-- cms:id="search_range_price" /-->

selectbox、checkboxやradioの場合は、項目を改行で区切って入力してください

表示のさせ方 : <!-- cms:id="search_" /-->

テンプレートへの記述例

<!-- shop:module="common.custom_search" -->
<form action="/shop/search.html">
  <table>
    <tr>
      <th>商品名</th>
      <td><!-- cms:id="search_item_name" /--></td>
    </tr>
    <tr>
      <th>価格帯</th>
      <td><!-- cms:id="search_range_price" /--></td>
    </tr>
    <tr>
      <th>説明1</th>
      <td><!-- cms:id="search_item_test" /--></td>
    </tr>
    <tr>
      <th>見出し</th>
      <td><!-- cms:id="search_item_copy2" /--></td>
    </tr>
    <tr>
      <th>説明3</th>
      <td><!-- cms:id="search_item_copy3" /--></td>
    </tr>
    <tr>
      <th>条件</th>
      <td><!-- cms:id="condition_radio" /--></td>
    </tr>
  </table>

  <p >
    <input type="submit" value="検索する">
  </p>
</form>
<!-- /shop:module="common.custom_search" -->

HTML表示例

<form action="/shop/search.html">
  <table>
    <tr>
      <th>商品名</th>
      <td><input type="text" name="q" value=""></td>
    </tr>
    <tr>
      <th>価格帯</th>
      <td><input type="text" name="range_price_min" value=""> ~
	  <input type="text" name="range_price_max" value=""></td>
    </tr>
    <tr>
      <th>説明1</th>
      <td><input type="text" name="item_copy1" value=""></td>
    </tr>
    <tr>
      <th>見出し</th>
      <td>
        <input type="checkbox" name="item_copy2[]" value="1" id="item_copy2_0">
        <label for="item_copy2_0">1</label>
        <input type="checkbox" name="item_copy2[]" value="2" id="item_copy2_1">
        <label for="item_copy2_1">2</label>
      </td>
    </tr>
    <tr>
      <th>説明3</th>
      <td>
        <input type="radio" name="item_copy3" value="a" id="item_copy3_0">
        <label for="item_copy3_0">a</label>
        <input type="radio" name="item_copy3" value="b" id="item_copy3_1">
        <label for="item_copy3_1">b</label>
        <input type="radio" name="item_copy3" value="c" id="item_copy3_2">
        <label for="item_copy3_2">c</label>
      </td>
    </tr>
    <tr>
      <th>条件</th>
      <td>
      	<input type="radio" name="custom_search" value="and" id="custom_search_and" checked="checked">
        <label for="custom_search_and">AND</label> 
        <input type="radio" name="custom_search" value="or" id="custom_search_or">
        <label for="custom_search_or">OR</label>
      </td>
    </tr>
  </table>
  <p >
    <input type="submit" value="検索する">
  </p>
</form>