Title: PCI Vault Forms
Author: PCI Vault
Published: <strong>2022 年 8 月 19 日</strong>
Last modified: 2024 年 10 月 8 日

---

搜尋外掛

![](https://ps.w.org/pci-vault-forms/assets/banner-772x250.jpg?rev=2772655)

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

![](https://ps.w.org/pci-vault-forms/assets/icon-256x256.jpg?rev=2838484)

# PCI Vault Forms

 由 [PCI Vault](https://profiles.wordpress.org/pcivault/) 開發

[下載](https://downloads.wordpress.org/plugin/pci-vault-forms.1.1.3.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/pci-vault-forms/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/pci-vault-forms/#reviews)
 * [開發資訊](https://tw.wordpress.org/plugins/pci-vault-forms/#developers)

 [技術支援](https://wordpress.org/support/plugin/pci-vault-forms/)

## 外掛說明

Securely [capture payment card data](https://docs.pcivault.io/developers/capturing-card-data/)
from your site using PCI Vault. PCI Vault is a vendor neutral PCI DSS compliant 
environment designed to reduce your PCI compliance scope to a SAQ by using [credit card tokenization](https://pcivault.io).

Data captured with this plugin will be sent to PCI Vault’s DSS compliant environment
directly, and will not be present on your own server. This allows you to securely
capture and [tokenize credit card](https://pcivault.io) data without being PCI DSS
compliant.

#### How it Works

The plugin comes with a short code that loads PCI Vault’s own [Payment Card Data (PCD) form](https://api.pcivault.io/pcd/how-to-capture-and-tokenize-payment-card-data.html),
and makes all the necessary requests to the [PCI Vault API](https://api.pcivault.io)
in order to get the form working. You can read more on the API side of things [here](https://docs.pcivault.io/developers/capturing-card-data/).

Take note that this includes 2 paid API requests: 1 when the form loads, and 1 when
the data is being sent to PCI Vault.

To use this plugin, add your authorisation details, and the user/passphrase for 
a key, in the PCI Vault Options menu. You can then load the capture form anywhere
in your site by using the `pcivault_capture` shortcode.

#### Shortcode Attributes

All valid short code attributes are imported directly into the javascript that renders
the form. The security of these attributes are the responsibility of the site, and
not PCI Vault.

Every attribute must be a valid Javascript expression. We recommend to use function
calls that return the values you want the attributes to have, this will grant extra
flexibility and avoid issues with WordPress’s sanitisation.

The attribute options are:

 * success_callback: A JS function to call if the card was successfully stored.
 * error_callback: A JS function to call if the card was not successfully stored.
 * extra_data: Extra data to store along with the card, must be a valid JS object.
   This is where using a JS function call really helps.
 * show_card: A true/false value on whether or not to show the card on the form.
 * disable_luhn: A true/false value on whether to disable validation on all form
   fields.
 * force_keypad: A true/false value on whether to force the user to use a randomised
   on-screen keypad for entering card numbers. This helps to protect you from key-
   loggers.
 * field_options: A configuration object for specifying which of the form fields
   to show or validate.

For more information on these fields, please check the documentation for PCI Vault’s
[Payment Card Data (PCD) form](https://api.pcivault.io/pcd/how-to-capture-and-tokenize-payment-card-data.html).

#### PCI Vault

All of the magic behind this plugin happens on PCI Vault’s environment.

This plugin sends an authenticated request to PCI Vault, retrieving a [unique capturing endpoint](https://docs.pcivault.io/developers/capturing-card-data/#step-1-create-a-unique-endpoint).

This request includes your authentication details, and the key/passphrase pair specified
in the PCI Vault Options menu.

This plugin also loads a [hosted PCD form](https://api.pcivault.io/pcd/how-to-capture-and-tokenize-payment-card-data.html)
from PCI Vault.

You need to be a customer of PCI Vault for this plugin to work. You can [view our pricing](https://pcivault.io/#pricing)
and [register an account](https://pcivault.io/register).

Also have a look at our [Terms of Service](https://pcivault.io/terms/) and our [Privacy Policy](https://pcivault.io/privacy/).

## 螢幕擷圖

 * [[
 * The PCD form.
 * [[
 * When the user fills in their CVV number, the card flips.
 * [[
 * The form after the data has been captured.

## 常見問題集

### I would like to have additional functionality

This plugin is still in it’s infancy. Your feedback will be much appreciated.

If you need additional functionality in order to use this form, please let us know.

### What if I want to capture sensitive data that is not credit card data?

PCI Vault can securely store any JSON formatted data. If you would like to store
another type of data, please let us know. We can easily add other types of form 
to the plugin.

### What if I want to see the data I have in the vault?

You can query [PCI Vault API](https://api.pcivault.io) directly from your browser.

It is also possible to add query functionality to the plugin. Please let us know
if this interests you.

## 使用者評論

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

## 參與者及開發者

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

參與者

 *   [ PCI Vault ](https://profiles.wordpress.org/pcivault/)

[將〈PCI Vault Forms〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/pci-vault-forms)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/pci-vault-forms/)、
查看 [SVN 存放庫](https://plugins.svn.wordpress.org/pci-vault-forms/)，或透過 [RSS](https://plugins.trac.wordpress.org/log/pci-vault-forms/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/pci-vault-forms/)。

## 變更記錄

#### 1.1.3 (2024-10-08)

 * Updated short description

#### 1.1.2 (2024-10-08)

 * Updated documentation to provide more clarity on credit card tokenization
 * Test plugin on WordPress version 6.7

#### 1.1.1 (2023-03-28)

 * Add more default fields to the data stored in the vault
 * Also make stored data available for the js callbacks
 * Test plugin on WordPress version 6.1.1

#### 1.1.0 (2022-12-23)

 * Expand shortcode attributes to give more control over the card form

#### 1.0.2 (2022-08-22)

 * Reduce required WordPress version from 5.7.0 to 4.3.1

#### 1.0.1 (2022-08-22)

 * Reduce required WordPress version from 6.0.1 to 5.7.0

#### 1.0.0 (2022-08-17)

 * Initial version

## 中繼資料

 *  版本 **1.1.3**
 *  最後更新 **2 年前**
 *  啟用安裝數 **少於 10 次**
 *  WordPress 版本需求 ** 4.3.1 或更新版本 **
 *  已測試相容的 WordPress 版本 **6.7.5**
 *  語言
 * [English (US)](https://wordpress.org/plugins/pci-vault-forms/)
 * 標籤:
 * [credit card](https://tw.wordpress.org/plugins/tags/credit-card/)[forms](https://tw.wordpress.org/plugins/tags/forms/)
   [payment](https://tw.wordpress.org/plugins/tags/payment/)[payment gateway](https://tw.wordpress.org/plugins/tags/payment-gateway/)
   [PCI](https://tw.wordpress.org/plugins/tags/pci/)
 *  [進階檢視](https://tw.wordpress.org/plugins/pci-vault-forms/advanced/)

## 評分

這個項目尚無任何評論記錄。

[Your review](https://wordpress.org/support/plugin/pci-vault-forms/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/pci-vault-forms/reviews/)

## 參與者

 *   [ PCI Vault ](https://profiles.wordpress.org/pcivault/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/pci-vault-forms/)

## 贊助

想要支援這個外掛的發展嗎？

 [ 贊助這個外掛 ](https://pcivault.io/)