這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Lowlevel Webforms

外掛說明

Most webform plugins let you create forms interactively. They have many options, some even let you insert PHP code. But in the end they all create some html.

The idea of this plugin is that it creates basic html which you then can modify for your needs. The plugin sends emails to the visitor and the admin, for each of them you can create a template containing the field values. And it provides the hooks you need to create your own functionality.

Links

安裝方式

  1. In your WordPress backend, go to the ‘Plugins’ page, click ‘New’ and enter ‘lowlevel-webforms’ in the search field. Find the plugin in the list and click ‘install’.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. In the plugin options, add the forms you need. They will be created as custom posts, you will find them in the webforms menu.
  4. Via ftp, go to /wp-content/themes/[current theme]/webforms/[form name] and modify the file. Create any html form you like.
  5. In the backend on the corresponding webform post, set the options you need for sending emails. In all templates you can add {variablename} for each variable you used in the form
  6. Add custom functionality in functions.php

For basic usage, see the video. In functions.php the following options are available:

hooks:

  • lw_webform_form_setup
  • lw_webform_form_validate
  • lw_webform_form_action

global variables:

  • global $lw_webform_id;
  • global $lw_webform_errors;
  • global $lw_webform_messages;
  • global $lw_webform_values;
  • global $lw_webform_search;
  • global $lw_webform_replace;
  • global $lw_webform_use_admin_email;
  • global $lw_webform_use_user_email;
  • global $lw_webform_success_page;
  • global $lw_webform_success_message;
  • global $lw_webform_admin_attachments;
  • global $lw_webform_user_attachments;

They are used to reset values defined on the form page. Please contact us for the full description

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈Lowlevel Webforms〉的開發相關工作。

參與者

將〈Lowlevel Webforms〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

0.1

  • First commit