[WordPress] 外掛分享: GunTab Payment Gateway

首頁外掛目錄 › GunTab Payment Gateway
WordPress 外掛 GunTab Payment Gateway 的封面圖片
30+
安裝啟用
尚無評分
31 天前
最後更新
問題解決
WordPress 4.7+ PHP 7.2+ v0.5.0 上架:2021-04-20

內容簡介

GunTab Payment Gateway 是專為槍械和彈藥電子商務打造的交易平台,提供安全便捷的線上支付服務,並保證不會發生退款問題。

【主要功能】
• 安全的槍械支付處理
• 退款保證
• WooCommerce 整合簡單
• 自訂發票數據
• 支援網路鉤子(Webhook)功能

外掛標籤

開發者團隊

⬇ 下載最新版 (v0.5.0) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「GunTab Payment Gateway」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

GunTab is the only transaction platform built for firearm and ammunition e-commerce. It enables you get paid safely and easily online. We even guarantee against chargebacks. Learn more at GunTab.com.
Activate the plugin in WordPress

Go to Plugins > Add New.
Search for “GunTab”.
Select “Install Now”.
After installation is complete, select “Activate”.

Enable the plugin in WooCommerce

Go to WooCommerce > Settings > Payments.
Select to enable “GunTab Payments”.
Select “Save changes”.
After the page reloads, select to “Manage” GunTab Payments. Now you may set your preferences.

Filters
Alter the invoice data before it gets sent to GunTab:
use GunTab\Api\GunTab\Abstracts\Invoice;

function guntabAlterInvoice(Invoice $invoice, \WC_Order $order) {
// Your code
return $invoice;
}

add_filter('guntab_alter_invoice', 'guntabAlterInvoice');

Alter the order status when the status must change due to a webhook request from GunTab:
function getNewOrderStatus(string $suggestedStatus, \stdClass $jsonDataFromGunTab) {
// Your code
return 'wc-complete'; // Choose a different WooCommerce order status based on $jsonDataFromGunTab->status
}

add_filter('guntab_get_new_order_status', 'getNewOrderStatus', 10, 2);

Actions

Called when GunTab sends a request to your webhook endpoint. It runs after the plugin processes the request:
function your_function_name(\WC_Order $order, \stdClass $postedJsonData) {
// Your code
}

add_action('guntab_on_webhook', 'your_function_name', 10, 2);

延伸相關外掛

文章
Filter
Mastodon