W
by waffarx 1 (0 reviews)

WaffarAD Affiliate Network

WaffarAD (WaffarX's affiliate network) integration for WooCommerce: affiliate order tracking plus the WaffarX In-App Order payment gateway.

WaffarAD Affiliate Network ranks #42,623 among WordPress.org plugins with 10+ active installations, is #399 of 1,067 in the Advertising category, a 1/5 rating from 0 reviews, and was last updated Jun 24, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 7 (Current: 7.1.2)
v2.0.1 Current Version v2.0.1
Updated 2 months ago Last Update on 24 Jun, 2026
Refreshed 13 hours ago Last Refreshed on
#399 of 1,067 in Advertising Top 50% by installs
View on WordPress.org
Rank
#42,623
No change
Active Installs
10+
-16.7%
KW Avg Position
20
No change
Downloads
66.9K
+2 today
Support Resolved
0%
No change
Rating
20%
Review 1 out of 5
1 (0 reviews)

Next Milestone 20

Total Progress 10%
10+ 20+
29,361
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 9 more installs to reach 20+

Rank Changes

33,112 37,124 41,137 45,149 49,161 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
33,112 37,124 41,137 45,149 49,161 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #42,623
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

1.0
0 reviews
Overall 20%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about WaffarAD Affiliate Network

Affiliate tracking: Settings → WaffarAD Tracking → "Enable affiliate order tracking" (on by default). In-App Order gateway: WooCommerce → Settings → Payments → In-App Order → Enable/Disable. WaffarX Coupons: Settings → WaffarAD Tracking → "Enable WaffarX Coupons" (on by default). WaffarX Platform API: Settings → WaffarAD Tracking → "Enable the WaffarX Platform API" (on by default). Turn this off if you do not want the catalog/cart/shipping/order-list/refund API exposed. Each toggle notifies WaffarX.
Settings → WaffarAD Tracking → "WaffarX API Credentials": a single API Key and API Secret, provided to you by WaffarX. This one pair powers everything — it identifies your store, signs outbound reporting, and authenticates every inbound WaffarX API call. Alternatively, define WAFFARAD_API_KEY and WAFFARAD_API_SECRET in wp-config.php; those constants take precedence. No WooCommerce REST consumer keys are needed. Inbound requests are not run as any WordPress user; the Platform API authorizes its internal WooCommerce calls only for the duration of each request.
With the single API Secret, either way: * Bearer token: Authorization: Bearer * HMAC signature: X-WaffarX-Key + X-WaffarX-Timestamp + X-WaffarX-Signature, where the signature is HMAC-SHA256 of "timestamp.rawBody" using the secret (a short timestamp window guards against replay).
WooCommerce → Settings → Payments → In-App Order: the allowed gateway values and allowed gateway statuses. (Authentication uses the unified WaffarX API Secret above — there is no separate gateway token.)
Base: https://your-domain.com/wp-json/waffarx/v1 * POST /order — place an order (requires gateway + transaction metadata; accepts optional affiliate attribution). * GET /order/{id} — fetch an order. * GET /order/by-idempotency-key?key=… — look up an order by idempotency key (full WooCommerce data). * POST /order/{id}/cancel — cancel an order. All require the unified WaffarX authentication (Bearer token = the API Secret, or an X-WaffarX HMAC signature).
Base: https://your-domain.com/wp-json/waffarx/v1 (all authenticated with the unified WaffarX credential; enabled via Settings → WaffarAD Tracking → "WaffarX Platform API"): * GET /products, GET /products/{id}, GET /products/{id}/variations — catalog. * GET /payment-gateways — available payment methods. * GET /data/countries, GET /data/countries/{code} — countries and provinces. * GET /shipping/zones, GET /shipping/zones/{id}/methods — shipping configuration. * POST /shipping-rates — stateless shipping quote for given line_items + destination. * GET /orders — list orders. * POST /order/{id}/refund — refund an order (send api_refund=false for a manual/records-only refund). * GET /cart, POST /cart/add-item, POST /cart/update-customer, POST /cart/select-shipping-rate — cart (Store API; pass the Cart-Token header returned by GET /cart). These forward to WooCommerce's own REST endpoints internally, so behavior and schemas match core WooCommerce.
Base: https://your-domain.com/wp-json/waffarx/v1 * POST /coupon — mint a single-use coupon. Body: amount (required), waffarx_reference (required object with voucher_id and optional batch_id/third_party_id/partner_id), and optional code, discount_type (default fixed_cart), expiry_date (YYYY-MM-DD), and individual_use (default false). If no code is supplied the plugin generates one and returns it. Minting is idempotent per voucher_id; a supplied code that already exists is rejected. * GET /coupon/{code} — fetch a WaffarX-issued coupon. * POST /coupon/{code}/void — disable an unused WaffarX-issued coupon. The same authentication as the In-App Order API applies; mutating routes (create, void) require the feature to be enabled.

Sign In / Register

You need to sign in or register to use this feature.