
內容簡介
總結:Paypercut for WooCommerce 讓客戶輕鬆支付,同時讓您更輕鬆管理,提供快速、安全和直觀的結帳體驗,幫助您提高轉換率並優化運營。
問題與答案:
1. 這個外掛的目的是什麼?
- 答:創建和管理支付結帳會話、安全處理客戶支付、驗證支付狀態並更新訂單狀態、處理已完成訂單的退款、以及設置和管理支付通知的 Webhooks。
2. 這個外掛會在哪些情況下與 Paypercut's API 傳送數據?
- 答:在結帳會話創建時、支付驗證時、退款處理時、設置 Webhooks 時以及驗證 API 憑證時會向 Paypercut's API 傳送數據。
3. 關於支付卡數據的重要事項是什麼?
- 答:支付卡數據(信用卡號碼、CVV 碼等)是由 Paypercut 通過其托管的結帳界面直接收集並處理,這些敏感的支付信息永遠不會透過或存儲在這個外掛或您的 WordPress 網站中。
4. 這個服務是由誰提供的?
- 答:這個服務是由 Paypercut 提供的,詳細的數據處理資訊請參考他們的隱私政策。
5. 這個外掛使用什麼來建立 Blocks 結帳集成?
- 答:這個外掛使用 npm 和 @wordpress/scripts(使用 webpack)來建立 Blocks 結帳集成。
6. 如何重新從源代碼構建資產?
- 答:安裝依賴項目後,執行 npm run build 來將資產/blocks/index.js 編譯為縮小的資產/build/index.js,使用 @wordpress/scripts。
外掛標籤
開發者團隊
② 後台搜尋「Paypercut Payments for WooCommerce」→ 直接安裝(推薦)
原文外掛簡介
Make it easy for customers to pay — and easier for you to manage — with Paypercut for WooCommerce.
This plugin brings fast, secure, and intuitive checkout to your online shop,
helping you boost conversions and streamline operations.
Paypercut enables a range of trusted payment methods while giving you a single,
unified view of all your transactions — whether online or in person.
Whether you’re selling physical products or digital downloads, Paypercut for WooCommerce
makes taking payments effortless — so you can focus on growing your online business.
External services
This plugin connects to the Paypercut Payments API (api.paypercut.io) to process payments and manage checkout sessions for your WooCommerce store. This connection is required for the plugin to function, as all payment processing is handled through Paypercut’s secure infrastructure.
What the service is used for:
* Creating and managing payment checkout sessions
* Processing customer payments securely
* Verifying payment status and updating order status
* Managing refunds for completed orders
* Setting up and managing webhooks for payment notifications
What data is sent and when:
The plugin sends data to Paypercut’s API (https://api.paypercut.io/) in the following scenarios:
During checkout session creation (when a customer initiates checkout):
Store information (store name, store URL, WooCommerce order identifiers)
Order details (order total, currency, line items, shipping costs, tax amounts)
Customer billing information (name, billing address, email address)
Customer shipping information (if applicable: shipping name and address)
Technical metadata (session identifiers, return URLs, webhook URLs)
During payment verification (when verifying payment status):
Checkout session identifiers
Order identifiers
During refund processing (when a store administrator issues a refund):
Payment intent identifiers
Refund amount and currency
Refund reason (if provided)
During webhook setup (when configuring the plugin):
Webhook URL for payment notifications
Webhook event types to subscribe to
During API credential validation (when testing connection in settings):
API credentials for authentication purposes only
Important: Payment card data (credit card numbers, CVV codes, etc.) is collected and processed directly by Paypercut via their hosted checkout interface. This sensitive payment information never passes through or gets stored by this plugin or your WordPress site.
Service provider:
This service is provided by Paypercut. For more information about how Paypercut handles data, please refer to:
* Privacy policy: https://paypercut.com/privacy-policy
Development
This plugin uses npm and @wordpress/scripts (which uses webpack) to build the Blocks checkout integration.
Source Code Location
IMPORTANT: The human-readable source code for all compiled JavaScript is included in this plugin.
The minified/compiled file assets/build/index.js is generated from the following source file:
* Source file: assets/blocks/index.js – This is the human-readable, unminified source code for the Blocks checkout integration
All source code is included in the published plugin. The source file (assets/blocks/index.js) contains the original, readable JavaScript code with ES6 modules, comments, and proper formatting. The compiled version (assets/build/index.js) is generated from this source using the build process described below.
Building assets
To rebuild the compiled assets from source:
Install dependencies:
bash
npm install
Build production assets:
bash
npm run build
This will compile assets/blocks/index.js into the minified assets/build/index.js using @wordpress/scripts.
