Add Template For Contact Form 7 Wordpress Plugin - Rating, Reviews, Demo & Download

Add Template For Contact Form 7 Preview Wordpress Plugin - Rating, Reviews, Demo & Download
No ratings yet
Free
Follow for free plugins, new theme releases and theme news

Plugin Description

This plugin adds a template function to “Contact Form 7” using a template file.
“Contact Form 7″にテンプレートファイルによるテンプレート機能を追加するプラグインです。

This is useful for theme developers to smoothly check the display of CF7 tags.
テーマ開発者が CF7 タグの表示確認をスムーズに行わせるのに便利です。

Create an atcf7 directory in the theme folder and place the template file (.php) in that directory.
テーマディレクトリ内に”atcf7″ディレクトリを作成し、そのディレクトリの中にテンプレートファイル(.php)を配置します。

You can use PHP, WordPress functions / objects, ACF functions (excluding some) in the template file.
テンプレートファイル内ではPHPやWordpress関数・オブジェクト、ACF関数(一部を除く)などを使うことができます。

Example [theme_path/atcf7/***.php]

<?php
if (!defined('ABSPATH')) {
  exit;
}
/*
* Template Name: Distinguishing Name
*/
?>

<h2>
<?php
// Example of using WP function
the_title();
?>
</h2>

<table>
  <tbody>
    <tr>
        <th><label for="your-category" onclick="">Category</label></th>
        <td>
          <?php
            // Example of using get_field of ACF with checkbox
            $cats = "'".get_field("cat1")."'";
            $cats .= " '".get_field("cat2")."'";
            $cats .= " '".get_field("cat3")."'";
          ?>
          [checkbox your-category id:your-category class:atcf7-form-radio-label exclusive use_label_element <?php echo $cats; ?>]
        </td>
    </tr>
    <tr>
      <th><label for="your-name" onclick="">Name</label></th>
      <td>
        [text* your-name id:your-name]
      </td>
    </tr>
    <tr>
      <th><label for="your-email" onclick="">Mail Address</label></th>
      <td>
        <div>
          [email* your-email id:your-email ]
        </div>
      </td>
    </tr>
    <tr>
      <th><label for="your-content" onclick="">Contents</label></th>
      <td>
        [textarea* your-content x5 id:your-content ]
      </td>
    </tr>
  </tbody>
</table>
<div>[submit "Submit"]</div>

For the theme developer to make the confirmation smooth, create the atcf7 directory in the theme folder and place the template file (.php) in that directory.
このプラグインの作者は Contact Form 7 プラグイン開発元とは関係ありません、ご注意下さい。

Arbitrary section 1

Screenshots

  1. <p>Open the "Template File" tab on the Edit screen of Contact Form 7.
Contact Form 7 の編集画面の"テンプレートファイル"タブを開きます。</p>

    Open the “Template File” tab on the Edit screen of Contact Form 7.
    Contact Form 7 の編集画面の”テンプレートファイル”タブを開きます。

  2. <p>Select the template you want to use.(Contains samples.)
使用したいテンプレートを選択してください。(サンプルが含まれます。)</p>

    Select the template you want to use.(Contains samples.)
    使用したいテンプレートを選択してください。(サンプルが含まれます。)


Reviews & Comments