Four plugins. One wallet.
Payment buttons, content gating, crowdfunding, and a full storefront. Built the WordPress way — products are posts, carts are blocks, and the dashboard is native.
Fire Shop
A full WordPress-based storefront for your online offerings.
Everything you need to sell online, built natively for WordPress. Products, cart, checkout, and order management — all running inside your existing site and theme.
- Full-featured storefront with product filters
- Products with attributes and variations
- AJAX cart with mini-cart drawer — no page reloads
- One-page checkout + Customer Accounts
- Coupons and discount codes
- Shareable wishlists
- Tax groups and shipping zones
- CSV import and export for products and orders
- And so much more
// 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
});
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
- Zero processing fees and chargebacks. No account needed.
- Customizable button — colors, styles, border radius, Fire logo
- Payment dashboard with status filters and sortable columns
- Payments process wallet-to-wallet without any data on your server
// 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
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
- No sensitive data stored on your page
- Built-in tamper protection and abuse prevention
// 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"]
Fire Fund
Crowdfunding & donations.
Accept donations and run crowdfunding campaigns directly on your WordPress site. No platform fees, no middleman — funds go straight to your wallet.
- Donation button or full campaign page
- Progress bar with real-time on-chain tracking
- No platform fees or percentage cuts
- Donor privacy — no accounts or personal data required
- Gutenberg blocks for campaigns, goals, and donor walls
// Donation button shortcode
[fire_fund
goal="5000"
label="Support this project"
show_progress="true"
]
// Or use the Gutenberg block
// Insert → Fire Fund → Set goal
// Styles: minimal, card, full-page
// Optional donor wall block
Start building.
All three plugins use the same wallet API. One integration pattern, three products.