This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Gravity Forms HTML5 Validation

توضیحات

Adds native HTML5 validation support to the Gravity Forms plugin.

It supports both standard and paginated forms.

Supported Standard Fields

  • Single Line Text
  • Paragraph Text
  • Drop Down
  • چند انتخابی
  • چک‌باکس‌ها
  • شماره
  • کلیدهای رادیویی

Supported Advanced Fields

  • نام پیوند
  • تاريخ
  • زمان
  • تلفن
  • آدرس
  • وبسایت
  • نام‌کاربری
  • رمز عبور:
  • پست الکترونیک
  • بارگذاری فایل

Supported Post Fields

  • تیتر
  • Body
  • توضیح کوتاه ( نقل قول )
  • بر چسب ها
  • مجموعه
  • Post Image
  • زمینه دلخواه

Supported Pricing Fields

  • کالا
  • کمیت
  • Credit Card

Supported Hooks

  • gform_name_prefix_required
  • gform_name_middle_required
  • gform_name_suffix_required
  • gform_address_street2_required

These hooks can be used to force html5 validation on these subfields.

Example usage:

The following would apply your function to all forms.
add_filter( ‘gform_name_prefix_required’, ‘your_function_name’, 10, 2 );

To target a specific form append the form id to the hook name. (format: gform_password_FORMID)
add_filter( ‘gform_name_prefix_required_6’, ‘your_function_name’, 10, 2 );

The return value is expected to be a boolean value; As such you can also use them with “__return_true”.
add_filter( ‘gform_address_street2_required’, ‘__return_true’ );

مورد نیاز

This plugin requires prior installation and activation of Gravity Forms plugin by Rocketgenius ver. 1.9 and above.

Tested

Up to Gravity Forms plugin ver. 1.9.17.6

نصب

  1. Download the gravityforms-html5-validation.zip file to your local machine.
  2. Either use the automatic plugin installer (Plugins – Add New) or Unzip the file and upload the isw-blocks folder to your /wp-content/plugins/ directory.
  3. Activate the plugin through the Plugins menu
  4. Visit the Gravity Forms general settings page ( Forms -> Settings ) and make sure that Output HTML5 option is set to yes.
  5. All fields configured as “required” will now use native html5 validation.

بررسی‌ها

خواندن تمامی 3 بررسی‌

توسعه دهندگان و همکاران

“Gravity Forms HTML5 Validation” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کرده‌اند.

مشارکت کنندگان

ترجمه “Gravity Forms HTML5 Validation” به زبان شما.

علاقه‌ مند به توسعه هستید؟

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

تغییرات

2.4.2

  • Fix DOM class names and methods.

2.4.1

  • Fix script debug flag.

2.4

  • Add support for various fields.
  • Add support for paginated forms.

2.3

  • Initial WordPress.org Release