SleekView for NOWPayments for WooCommerce: crypto payments as tables
Read directly from wc_orders filtered by payment_method=nowpayments and surface the NOWPayments payment id, pay currency, and pay amount from wc_orders_meta. Sort, filter, and inline-edit multi-coin payments without per-order click-through.
♾️ Lifetime License available
Multi-coin orders need multi-coin columns
NOWPayments adds itself to WooCommerce as a payment gateway and writes its identifiers to wc_orders_meta (HPOS) or postmeta (legacy). The default Orders screen shows order number, status, customer, total. The payment id you need to look up a transaction on the NOWPayments dashboard, the actual coin used (BTC, ETH, TRX, USDT-TRC20, and dozens more), and the on-chain amount that settled, all stay hidden behind a per-order click.
SleekView reads wc_orders with a saved filter on payment_method=nowpayments and exposes the NOWPayments meta keys (_nowpayments_payment_id, _nowpayments_pay_currency, _nowpayments_pay_amount, _nowpayments_order_id) as first-class columns. Group by pay currency to see daily volume per coin, filter by pay amount range, save the view as "Pending NOWPayments over 30 minutes" and your team checks it every shift.
Inline status edits route through WooCommerce's CRUD layer so the woocommerce_order_status_changed hook still fires. Digital-product fulfilment, license issuance, and accounting webhooks all trigger as if you opened each order by hand, except a bulk-flip of forty stuck pending orders to failed takes ten seconds instead of an afternoon.
Workflow
How SleekView reads your NOWPayments WooCommerce schema
Pick the source table
wc_orders on HPOS or shop_order on legacy. SleekView detects which path is active and exposes matching columns and joinable address data.
Compose your NOWPayments column set
_nowpayments_payment_id, _nowpayments_pay_currency, _nowpayments_pay_amount. The agent UI lists meta keys actually present in your installation.
Save and scope the view
Edit inline and bulk-update
Sample columns
A typical NOWPayments orders view
wc_orders filtered by payment_method=nowpayments and joins wc_orders_meta for payment id and pay currency columns.
wp_wc_orders + wp_wc_orders_meta (HPOS) or wp_posts (shop_order) + wp_postmeta
| Order # | Status | Customer | Total | Pay currency | Payment ID | Date |
|---|---|---|---|---|---|---|
| #20431 | Waiting | alex@studio.co | €184.00 | USDT-TRC20 | np_71924 | Apr 24 |
| #20430 | Finished | ria@design.io | €72.50 | TRX | np_71923 | Apr 24 |
| #20429 | Finished | tom@hello.dev | €312.00 | BTC | np_71922 | Apr 23 |
| #20428 | Failed | mia@brew.coop | €48.00 | ETH | np_71921 | Apr 23 |
Comparison
Default NOWPayments for WooCommerce admin vs SleekView
Default NOWPayments for WooCommerce admin
- WooCommerce Orders screen has no NOWPayments-specific columns
-
Pay currency, pay amount, and payment id live in
wc_orders_metaand stay hidden - Cross-coin volume reporting is not in the default admin
- Stuck waiting orders require per-order inspection
-
Filtering by
payment_method=nowpaymentsneeds URL parameter tricks
SleekView
-
Read
wc_orderswith a savedpayment_method=nowpaymentsfilter -
Expose
_nowpayments_payment_id,_nowpayments_pay_currency, and_nowpayments_pay_amountas columns - Bulk-resolve stuck waiting orders through CRUD
- Save filtered views ("USDT volume this week", "Pending over 30 min")
- Kanban view grouped by pay currency or order status
Features
What SleekView gives you for NOWPayments for WooCommerce
Multi-coin filters
Combine payment_method=nowpayments, pay currency, pay amount range, and status. Save "USDT-TRC20 today" or "BTC waiting over 30 min" as named views your team reuses every shift.
Per-coin volume views
Group by _nowpayments_pay_currency to see which coins drive your revenue. Sort by pay amount or count to spot which coins have the highest waiting-to-finished drop-off.
Inline edits with WooCommerce hooks
Flip a waiting order to failed or finished right in the row. woocommerce_order_status_changed fires, so license issuance and digital-product fulfilment trigger normally.
Audience
Who uses SleekView for NOWPayments for WooCommerce
Finance
Per-coin revenue tables filtered by date. Reconcile finished NOWPayments orders against the NOWPayments dashboard payout history by currency and amount.
Support
Search by _nowpayments_payment_id when a customer disputes a payment. Edit order notes inline without opening separate tabs to the NOWPayments dashboard.
Store owners
Spot which coins your customers actually use, which ones drive the most pending-to-failed loss, and whether stablecoins like USDT-TRC20 or USDC-ERC20 see better completion.
The bigger picture
Why multi-coin stores outgrow the default WooCommerce admin
NOWPayments supports more than two hundred coins and tokens, which is exactly why store owners pick it: a customer can pay in USDT-TRC20, TRX, BTC, ETH, or whichever coin they hold. That breadth is a problem for the default WooCommerce admin, which treats every NOWPayments order as an opaque row with a fiat total and a status badge. Pay currency, pay amount, and payment id all live in wc_orders_meta, invisible until you click.
Finance reconciling daily payouts ends up opening dozens of orders to match coin and amount. Support fielding a "my TRX payment is stuck" ticket cannot search by payment id from the orders list. Store owners trying to decide which coins are worth keeping enabled have no per-coin volume view.
SleekView fixes the surface without changing the data: same wc_orders table, same NOWPayments meta keys, same CRUD layer for edits. Finance gets per-coin reconciliation, support gets payment-id lookup, store owners get the volume view.
Questions
Common questions about SleekView for NOWPayments for WooCommerce
Yes. SleekView reads wc_orders and wc_orders_meta on HPOS, default since WooCommerce 8.2, and falls back to shop_order posts plus postmeta on legacy. The same NOWPayments column set works across both schemas.
Yes. NOWPayments writes the id to _nowpayments_payment_id in wc_orders_meta. SleekView lists meta keys actually present in your installation so you pick from a real list. Add it as a column for support lookups.
Inline edits route through WooCommerce's CRUD layer, so woocommerce_order_status_changed fires. NOWPayments-specific actions hooked into that filter trigger as expected. Bulk operations iterate per row through CRUD, so side effects are identical to manual admin edits.
Yes. NOWPayments stores the pay currency under _nowpayments_pay_currency and the pay amount under _nowpayments_pay_amount. Expose them as columns and you can see at a glance which orders settled in BTC versus USDT-TRC20 versus TRX.
SleekView reads only the WordPress database. The NOWPayments dashboard itself, including payouts and exchange rates, lives on NOWPayments servers. The order-level metadata SleekView surfaces (payment id, pay currency, pay amount) is enough for most reconciliation workflows.
 Pay amounts are coin-specific (1 BTC versus 1 USDT are not comparable), so filtering by pay amount is most useful inside a single-coin view. Combine a pay-currency filter with a pay-amount range for accurate slicing.
 
Queries hit indexed columns on wc_orders directly. Filtering by payment_method, status, and date_created_gmt uses HPOS indexes. Meta-based columns are opt-in per view since joins on wc_orders_meta are heavier.
Yes. SleekView supports scoped CSV export of the current filtered view, so finance gets exactly the slice they need (e.g. "BTC finished orders in April") without exporting the whole orders table.
 Pricing
More than 1000+
happy customers
Explore our flexible licensing options tailored to your needs. Upgrade your license anytime to access more features, or opt for a lifetime license for ongoing value, including lifetime updates and lifetime support. Our hassle-free upgrade process ensures that our platform can grow with you, starting from whichever plan you choose.
Lifetime ♾️
Most popular
EUR
once
- Unlimited websites
- Lifetime updates
- Lifetime support
...or get the Bundle Deal
and save €250 🎁
The Bundle (unlimited sites)
Pay once, own it forever
Elevate your WordPress site with our exclusive plugin bundle that includes all of our premium plugins in one package. Enjoy lifetime updates and lifetime support. Save significantly compared to buying plugins individually.
What’s included
-
SleekAI
-
SleekByte
-
SleekMotion
-
SleekPixel
-
SleekRank
-
SleekView
€749
Continue to checkoutBrowse more
- Checkout Field Editor
- Woocommerce Shipping Rates
- Currency Switcher
- Woocommerce Product Recommendations
- Woocommerce Product Search
- Woocommerce Coinbase Commerce
- Woocommerce Attribute Swatches
- Woocommerce Moneris
- Yith Woocommerce Color And Label Variations
- Surecart
- Woocommerce Deposits
- Wpc Frequently Bought Together
- Woocommerce Packlink Pro
- Woocommerce Pdf Invoice Pro
- Edd Reviews