WordPress
Three plugins. One wallet.
Payment buttons, a full storefront, and paid content gating. Built the WordPress way — products are posts, carts are blocks, and the dashboard is native.
Fire Pay
Payment button block
Fire Gates
Paid content gating
Fire Shop
Full storefront plugin
Plugin
Fire Pay.
Payment buttons for any page.
Drop a [fire_pay] shortcode or Gutenberg block on any post or page. Visitors pay with Fire Wallet — directly from their browser, no middleman.
- eUSD stablecoin payments with ~5 second confirmation
- No processing fees, no chargebacks, no accounts or KYC
- Customizable button — colors, styles, border radius, Fire logo
- Payment dashboard with status filters and sortable columns
- Payments go wallet-to-wallet with no data on your server
WordPress
// Shortcode — drop into any post or page
[fire_pay
amount="5.00"
label="Buy this guide"
style="filled"
color="#d61d3e"
]
// Or use the Gutenberg block
// Insert → Fire Pay → Set price
// Styles: filled, outline, minimal
// Toggle Fire logo on/off
Plugin
Fire Gates.
Put any content behind a payment.
Wrap content in a Fire Gate block, set a price, and it stays locked until the visitor pays. No accounts, no subscriptions, no external APIs.
- Gate any content in any post or page
- Multiple gates per page with individual or bundle pricing
- Content preview before purchase
- Wallet address fetched on click, never stored in the DOM
- HMAC tokens and rate limiting on all endpoints
WordPress
// Wrap any content in a gate
[fire_gate price="2.00" label="Unlock"]
Your premium content here.
Articles, videos, downloads.
[/fire_gate]
// Multiple gates on one page?
// Visitors can unlock individually
// or buy all with a bundle button
[fire_gate_bundle label="Unlock all"]
Plugin
Fire Shop.
A full storefront. No WooCommerce.
Products are posts, the cart is a Gutenberg block, and the dashboard uses native WordPress tables. Drop it into an existing site and the shop appears under your theme.
- No headless rebuild, no separate checkout subdomain
- No PCI scope — no card data ever touches your server
- One-tap checkout through Fire Wallet
- On-chain transaction reference recorded per order
- Lower fees, no chargebacks, no customer financial data stored
WordPress
// Products → custom post type
// Cart → Gutenberg block
// Checkout → Gutenberg block
// Dashboard → native WP_List_Table
// Payment uses the same wallet API
const result = await window.fire.requestPayment({
recipientB58: 'merchant-address',
amount: orderTotal,
tokenId: 1,
merchantRef: orderId
});
Start building.
All three plugins use the same wallet API. One integration pattern, three products.