✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount

SleekView for WooCommerce Elavon: Converge gateway transactions as tables

Surface Elavon Converge transaction ids, approval codes, AVS responses, and capture state from wc_orders_meta as real columns. Reconcile batches and audit declines without opening each order.

♾️ Lifetime License available

SleekView table view for WooCommerce Elavon Converge

Elavon Converge data, as columns

Elavon's Converge gateway is heavy in North American card processing, and its WooCommerce extension stores transaction id, approval code, AVS, CVV, and capture status into order meta on every checkout. On HPOS stores these land in wc_orders_meta under keys such as _wc_elavon_txn_id, _wc_elavon_approval_code, _wc_elavon_avs_response, and _wc_elavon_capture_status. None of those keys show up on the default Orders screen.

SleekView reads them as columns alongside the WooCommerce order data. Daily batch reconciliation becomes a saved view filtered on capture date with totals visible inline. Declines filter by AVS code for fraud audit. Authorisations approaching the Elavon settlement window get a sort-by-age view that surfaces stale auths before they expire. Tokens in woocommerce_payment_tokens joined to woocommerce_payment_tokenmeta expose saved card references per customer.

Inline status edits route through WooCommerce CRUD, so woocommerce_order_status_changed fires and the Elavon extension's own capture, void, and refund actions remain available from the order context. SleekView gives ops a row-level view; the plugin still owns the gateway communication.

Workflow

How SleekView reads the Elavon plugin schema

1

Pick the base table

Choose wc_orders for the transaction workspace or woocommerce_payment_tokens for a token-rooted view. HPOS or legacy is detected automatically.
2

Add Elavon meta columns

Pull _wc_elavon_txn_id, _wc_elavon_approval_code, _wc_elavon_avs_response, and _wc_elavon_capture_status from the meta picker.
3

Save the workflow views

"Capture today" for finance, "AVS mismatch" for risk, "Awaiting capture" for fulfilment. Gate each view per WordPress capability.
4

Bulk-update post settlement

After the daily Converge batch settles, bulk-update affected orders through SleekView. CRUD writes keep WooCommerce hooks firing for downstream integrations.

Sample columns

A typical Elavon Converge transactions view

Joins wc_orders with Elavon meta keys (_wc_elavon_txn_id, _wc_elavon_approval_code, _wc_elavon_avs_response).
Source: wp_wc_orders + wp_wc_orders_meta + wp_woocommerce_payment_tokens
Order # Elavon TX Amount Approval AVS Date
#5601 EV-77432A $144.00 Approved Match Apr 24
#5600 EV-77433B $62.00 Approved Partial Apr 24
#5599 EV-77434C $228.00 Declined No match Apr 23
#5598 EV-77435D $48.00 Approved Match Apr 22

Comparison

Default WooCommerce Elavon admin vs SleekView

Default WooCommerce Elavon admin

  • Transaction id and approval code live in wc_orders_meta, not on Orders list
  • AVS and CVV codes require opening each order to see
  • No filter for authorised-not-captured auths approaching expiry
  • Daily batch reconciliation against the Converge portal is manual
  • Tokens in woocommerce_payment_tokens aren't surfaced in the order context

SleekView

  • _wc_elavon_txn_id, _wc_elavon_approval_code, and AVS code as columns
  • Saved "capture today" view for the daily settlement window
  • Filter on AVS or CVV mismatch for fraud audit views
  • Bulk-update post settlement with hooks firing through CRUD
  • Customer-rooted token-management view from woocommerce_payment_tokens

Features

What SleekView gives you for WooCommerce Elavon Converge

Elavon meta as columns

Pull _wc_elavon_txn_id, _wc_elavon_approval_code, _wc_elavon_avs_response, and capture status from the meta picker. Each view picks the subset its team needs.

Daily settlement view

Filter on capture date equals today combined with currency. Totals inline so finance reconciles against the Converge merchant portal without exporting CSVs.

Decline-audit table

Filter on auth status declined plus AVS no-match. Sort by amount and customer email to spot patterns the default WC Orders screen would never show.

Audience

Who uses SleekView for WooCommerce Elavon

Finance

Daily batch reconciliation against Converge. Capture totals by date and currency; refund totals on the same screen. Export to CSV for accounting.

Risk and chargebacks

Audit view filtered on AVS or CVV mismatch. Spot patterns before they become disputes; evidence-pack export ready for the chargeback team.

Support

Customer history with transaction id, approval code, and AVS state per order. Dispute evidence ready without screen-recording the order page.

The bigger picture

Why North American gateway ops need row-level views

Elavon Converge is one of the long-established North American gateways and is in heavy use across mid-market WooCommerce stores. The card lifecycle through Converge involves separate auth, capture, void, and refund operations, plus AVS and CVV verification at the gateway level. The WooCommerce extension records all of that into order meta, the default WooCommerce Orders screen reads almost none of it.

A merchant sees Processing or Completed and a dollar total, not whether the auth has been captured, not whether AVS matched, not whether the auth is close to the Converge settlement window. Finance reconciles by hand, risk teams spot AVS problems only after the chargeback, support teams pull dispute evidence one order at a time. SleekView reads the meta the plugin already writes and exposes it as columns.

The plugin's API calls and webhook handlers continue unchanged. The gain is visibility, in tabular form, of data the WooCommerce admin has always stored but never shown.

Questions

Common questions about SleekView for WooCommerce Elavon Converge

Yes. The Converge product is now part of Elavon and the extension's meta keys are unchanged across the rebranding. SleekView reads whichever the installed plugin version writes, scanned from wc_orders_meta live.

 

Yes. Keys read from wc_orders_meta on HPOS and from postmeta on legacy stores. The same column configuration works on both, the active path is detected automatically.

 

Yes. _wc_elavon_avs_response records the AVS code per transaction. Map values to labels (Match, Partial, No match) for human-readable display, filter on No match for the fraud-audit view.

 

Yes. Status edits route through WooCommerce CRUD, so woocommerce_order_status_changed fires and the Elavon extension's own capture, void, and refund actions continue to run from the order context.

 

Yes. woocommerce_payment_tokens filtered by gateway slug shows saved Elavon card tokens. Join woocommerce_payment_tokenmeta for the Converge-side reference id stored against each.

 

SleekView gives a same-day or same-period filtered view of captures and refunds in WordPress. Match totals against the Converge merchant portal report side-by-side rather than exporting CSVs to grep through.

 

Yes. Queries hit indexed columns on wc_orders directly. Meta filters use wc_orders_meta indexes. Aggregate columns are opt-in per view since they cost more than direct columns.

 

Yes. Build a view scoped to one order or one customer with transaction id, approval code, AVS, and order notes. Export to CSV or PDF and attach to the chargeback response.

 

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.

Starter

€79

EUR

per year

  • 3 websites
  • 1 year of updates
  • 1 year of support

Pro

€149

EUR

per year

  • Unlimited websites
  • 1 year of updates
  • 1 year of support

Lifetime ♾️

Most popular

€249

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