Title: DeloPay
Author: DeloPay
Published: <strong>iýul 10, 2026</strong>
Last modified: iýul 10, 2026

---

Search plugins

![](https://ps.w.org/delopay/assets/icon.svg?rev=3602595)

# DeloPay

 By [DeloPay](https://profiles.wordpress.org/delopay/)

[Download](https://downloads.wordpress.org/plugin/delopay.1.0.0.zip)

 * [Details](https://tuk.wordpress.org/plugins/delopay/#description)
 * [Reviews](https://tuk.wordpress.org/plugins/delopay/#reviews)
 *  [Installation](https://tuk.wordpress.org/plugins/delopay/#installation)
 * [Development](https://tuk.wordpress.org/plugins/delopay/#developers)

 [Support](https://wordpress.org/support/plugin/delopay/)

## Description

DeloPay turns your site into a merchant storefront. Shoppers complete payment inside
an iframe served by DeloPay, so card data never reaches your server.

**Licensing note:** only this plugin — the WordPress integration code — is open 
source (MIT), as required for everything hosted in the WordPress.org directory. 
The DeloPay platform itself (the payment service, hosted checkout and APIs it connects
to) is a proprietary commercial service operated by DeloPay and is not open source.
A DeloPay merchant account is required.

#### Why DeloPay

DeloPay is a composable payments orchestrator that connects to multiple payment 
providers — including Stripe, Klarna, PaySePro and NOWPayments — through a single
API. Once your site is paired with your DeloPay merchant account, you can:

 * Switch payment methods on and off from the DeloPay control center without redeploying.
 * Keep card data off your site — payment details are entered on the hosted checkout
   and forwarded directly to your chosen connector. Your server and database never
   see a card number.
 * Get unified reporting on costs, refunds and reconciliation across every connector.

#### What this plugin gives you

 * **Product catalog** — manage products and categories from the admin. Each category
   gets its own page automatically with a configurable hero (eyebrow, title, subtitle).
 * **Hosted checkout** — drop `[delopay_checkout]` on any page; the buyer pays inside
   a DeloPay-served iframe.
 * **Server-rendered cart** — `[delopay_cart]` totals up against the trusted catalog
   so prices can’t be tampered with on the client.
 * **Storefront shortcodes** — `[delopay_products]`, `[delopay_product]`, `[delopay_categories]`,`[
   delopay_category_hero]`, `[delopay_complete]`.
 * **Signed webhooks** — every DeloPay webhook is verified with HMAC-SHA512 in constant
   time before any state mutation.
 * **Refunds in the admin** — full and partial refunds in `DeloPay  Orders`, pushed
   to the connector and reconciled by a 15-minute background cron.
 * **One-click pairing** — `Connect to DeloPay` runs an OAuth-style handshake from
   the Settings screen; the API key is provisioned automatically and stored on the
   server (never exposed to the browser).
 * **Multi-currency, minor units** — all prices stored as integer minor units, formatted
   server-side in the buyer’s locale.
 * **Standalone admin pages** — Dashboard, Products, Categories, Orders, Branding,
   Business profile, Settings. WP-CLI compatible (`wp option get delopay_settings`).
 * **Pairs with the DeloPay Shop theme** for a turn-key storefront, or use any theme
   via the shortcodes above.

#### How the integration works

 1. The plugin holds your DeloPay API key on the server only — never echoed to the 
    browser or stored unhashed where it could be exfiltrated.
 2. On checkout, the plugin creates an order on the DeloPay backend and renders an 
    iframe pointing at the hosted checkout (`checkout.delopay.net`). The shopper completes
    payment there.
 3. DeloPay sends a signed webhook back to `/wp-json/delopay/v1/webhook`; the plugin
    verifies the HMAC and updates the order state in the database.
 4. Refunds initiated from the admin are forwarded to DeloPay’s `/refunds` API and 
    reconciled by a recurring background job.

#### Requirements

 * A DeloPay merchant account — sign up at [delopay.net](https://delopay.net).
 * PHP 7.4+ (the version-floor headers above cover the rest).
 * HTTPS on the front-end (required for the hosted checkout iframe to embed).

### External services

This plugin connects to the DeloPay payment platform (https://delopay.net) so the
site can accept payments and stay in sync with the merchant catalog. Specifically:

 * The plugin sends authenticated API requests to `https://api.delopay.net` (and
   the sandbox host `https://sandbox-api.delopay.net` while testing) for: creating
   and listing products and categories, creating orders, issuing refunds, and exchanging
   the connect handshake. Each request includes the merchant API key (server-side
   only) and the request payload (e.g. product fields, order line items, customer
   email at checkout time).
 * The plugin embeds a hosted checkout iframe served from `https://checkout.delopay.
   net` on the order page. The shopper’s browser loads that page directly from DeloPay;
   payment data is entered there and never touches this site.
 * The plugin receives webhook callbacks from DeloPay at `/wp-json/delopay/v1/webhook`
   to keep order state in sync. Each delivery is verified with HMAC-SHA512 against
   the configured webhook secret.

DeloPay terms of service: https://delopay.net/terms
 DeloPay privacy policy: https://
delopay.net/privacy

By activating and connecting this plugin you acknowledge that order, product and
customer data is transmitted to DeloPay under the terms above.

### Shortcodes

 * `[delopay_products limit="24" columns="3" category="home"]` — product grid (filter
   optional).
 * `[delopay_product id="123"]` — single product card.
 * `[delopay_categories]` — index of all active categories.
 * `[delopay_category_hero category="<slug>"]` — eyebrow / title / subtitle hero
   for a category page (auto-injected into seeded category pages; falls back to 
   a spacing-only block when the hero is empty).
 * `[delopay_cart]` — shopper’s cart with line items, subtotal and a checkout button.
 * `[delopay_checkout]` — order creation + checkout iframe.
 * `[delopay_complete]` — post-payment status page.

## Installation

 1. Upload the `delopay` folder to `/wp-content/plugins/` (or install via the Plugins
    screen).
 2. Activate the plugin — a default **Home** category and matching page are created
    automatically.
 3. Go to **DeloPay  Settings**, click **Connect to DeloPay**, and complete the handshake.
 4. Add products under **DeloPay  Products**. New products land in the Home category
    by default.
 5. Optional: add more categories under **DeloPay  Categories** — each one publishes
    its own page.
 6. Add a webhook endpoint in your DeloPay dashboard pointing at `https://your-site.
    tld/wp-json/delopay/v1/webhook`.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“DeloPay” is open source software. The following people have contributed to this
plugin.

Contributors

 *   [ DeloPay ](https://profiles.wordpress.org/delopay/)

[Translate “DeloPay” into your language.](https://translate.wordpress.org/projects/wp-plugins/delopay)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/delopay/), check out
the [SVN repository](https://plugins.svn.wordpress.org/delopay/), or subscribe to
the [development log](https://plugins.trac.wordpress.org/log/delopay/) by [RSS](https://plugins.trac.wordpress.org/log/delopay/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.0

 * Initial release.
 * Hosted checkout with products, orders and refunds managed from one admin panel—
   no card data handled on-site.
 * Manual capture mode: authorize at checkout, then capture or cancel each order
   from the Orders screen.
 * Disputes: read-only admin screen to list and inspect chargebacks pulled live 
   from DeloPay.
 * Webhooks: handle payment, dispute and subscription/invoice events (with `delopay_dispute_event`/`
   delopay_subscription_event` action hooks) across payment states (authorized, 
   captured).

## Meta

 *  Version **1.0.0**
 *  Last updated **sagat ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 6.0 or higher **
 *  Tested up to **7.0.1**
 *  PHP version ** 7.4 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/delopay/)
 * Tags
 * [checkout](https://tuk.wordpress.org/plugins/tags/checkout/)[ecommerce](https://tuk.wordpress.org/plugins/tags/ecommerce/)
   [Hosted Payment](https://tuk.wordpress.org/plugins/tags/hosted-payment/)[payments](https://tuk.wordpress.org/plugins/tags/payments/)
 *  [Advanced View](https://tuk.wordpress.org/plugins/delopay/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/delopay/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/delopay/reviews/)

## Contributors

 *   [ DeloPay ](https://profiles.wordpress.org/delopay/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/delopay/)