
前言介紹
- 這款 WordPress 外掛「Wemono Abandoned Cart Recovery for WooCommerce」是 2025-11-02 上架。
- 目前尚無安裝啟用數,是個很新的外掛。如有要安裝使用,建議多測試確保功能沒問題!
- 上一次更新是 2025-12-01,距離現在已有 87 天。
- 外掛最低要求 WordPress 5.0 以上版本才可以安裝。
- 外掛要求網站主機運作至少需要 PHP 版本 7.4 以上。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
wemono |
外掛標籤
marketing | woocommerce | cart recovery | Notifications | abandoned cart |
內容簡介
總結:Wemono Abandoned Cart Recovery for WooCommerce可以通過追踪放棄結帳並在用户返回時恢復購物車來幫助恢復失去的潛在銷售。該外掛在激活後自動運作,並提供REST API端點,讓您獲取放棄的結帳列表和摘要統計,以便與CRM、行銷工具或通知工具整合。
問題與答案:
問題:Wemono Abandoned Cart Recovery for WooCommerce通過什麼方式來幫助恢復可能丟失的銷售?
答案:通過追踪放棄結帳並在用户返回時恢復購物車。
問題:在配置方面,Wemono外掛的默認設置是什麼?
答案:放棄超時時間為2小時,分頁為_offset=0,_limit=200用於REST響應。
問題:如何生成WooCommerce API密鑰?
答案:到WooCommerce > 設置 > 進階 > REST API中,點擊添加密鑰,填寫描述,選擇具有manage_woocommerce能力的用戶(例如管理員),根據需要選擇讀取或讀寫,然後複製用戶密鑰和用戶密鑰密碼。
問題:如何進行插件的端對端測試?
答案:使用簡單的步驟來手動測試插件的端對端。步驟1:驗證放棄結帐。
原文外掛簡介
Wemono Abandoned Cart Recovery for WooCommerce helps recover potentially lost sales by tracking abandoned checkouts and restoring carts when users return. The plugin works automatically after activation and also provides REST API endpoints that let you fetch abandoned checkout lists and summary statistics for integration with your CRM, marketing, or notification tools.
Key features:
– Abandoned cart tracking for guests and logged-in users
– Automatic cart persistence and restoration across sessions
– WooCommerce REST API–authenticated endpoints to fetch cart data and statistics
– Lightweight and privacy‑aware: stores cart data in your site’s database
For more information, visit Wemono.
For documentation, visit Wemono Documentation.
Configuration
The plugin works out‑of‑the‑box without configuration. Defaults:
– Abandoned timeout: 2 hours (a cart is considered abandoned if not updated for 2 hours)
– Pagination: _offset=0, _limit=200 for REST responses
These can be overridden per request via REST API query parameters (see Usage). Server‑side defaults are defined in includes/WemonoRestAPIConfig.php.
Usage
After activation, cart tracking is automatic. To integrate with external systems, use the REST API.
Generate WooCommerce API keys
Go to WooCommerce > Settings > Advanced > REST API.
Click Add key, give it a description, select a user with manage_woocommerce capability (e.g., Administrator), and choose Read or Read/Write as needed.
Copy the Consumer Key and Consumer Secret.
REST API base
All endpoints are under:
https://yourstore.com/wp-json/wc-wemono/v1/
Authentication: Use the WooCommerce REST API Consumer Key and Secret via Basic Auth over HTTPS or as query parameters (ck_…/cs_…). Endpoints require authentication and proper capability. Requests without valid credentials will be rejected.
Quick testing scenarios
Use these simple steps to manually test the plugin end‑to‑end.
1) Verify abandoned checkouts endpoint with timeout=0 (for testing)
– Log in to your shop (optional), add a few products to the cart, but do not place an order.
– Call the endpoint with _timeout=0 to treat any idle cart as abandoned for testing:
curl -u ck_your_key:cs_your_secret \
“https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?_timeout=0&_limit=10”
Expected: a JSON array with at least one record for your current cart. Each record includes enriched products, totals, and an abandoned_checkout_url.
2) Check cart recovery after WooCommerce session close
– Logged‑in user: Log in, add items to cart, then log out (or clear cookies woocommerce_cart_hash, woocommerce_items_in_cart, wp_woocommerce_session_*). Log back in and open the cart page. Expected: previous cart contents are restored.
– Guest user: In a private window, add items to cart. Close the private window (deleting the session). Open a new private window and revisit the store. Expected: the previous cart may be restored based on session behavior, and the cart will appear via the API.
Optional API checks:
– Before closing the session:
curl -u ck_your_key:cs_your_secret \
“https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?_timeout=0&_limit=5”
After recovery or after completing checkout, show completed carts:
curl -u ck_your_key:cs_your_secret \
“https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?is_completed=true&_limit=5”
Notes: _timeout overrides the default 2‑hour threshold for testing. Always use HTTPS in production when sending API keys.
Endpoints
1) GET /abandoned-checkouts
– Returns a list of abandoned checkouts with enriched product details and cart summary.
– Query parameters:
– _order_dir: ASC or DESC (default: DESC by updated_at)
– _offset: integer, default 0
– _limit: integer, default 200
– _min_id: integer, filter records with id > value
– _max_updated_at: unix timestamp, include records updated before this time
– _min_created_at: unix timestamp, include records created after this time
– _timeout: seconds, override abandoned timeout (default 7200 seconds)
– has_phone: true/false, only results with a customer phone when true
– is_completed: true/false/all (default: false). By default only non‑completed checkouts are returned.
2) GET /abandoned-checkouts/with-phone
– Same as /abandoned-checkouts but automatically filters to results that include a phone number.
3) GET /cart-statistics
– Returns aggregate statistics about abandoned carts (e.g., totals, carts with phone, last 24h, average age).
Example requests
Curl with Basic Auth (recommended over HTTPS):
Fetch latest 50 non‑completed abandoned checkouts:
curl -u ck_your_key:cs_your_secret \
“https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?_limit=50”
Fetch checkouts with a phone updated before a timestamp:
curl -u ck_your_key:cs_your_secret \
“https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?has_phone=true&_max_updated_at=1730000000”
Fetch statistics:
curl -u ck_your_key:cs_your_secret \
“https://yourstore.com/wp-json/wc-wemono/v1/cart-statistics”
If you prefer query parameter authentication (ensure HTTPS):
https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?consumer_key=ck_your_key&consumer_secret=cs_your_secret
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Wemono Abandoned Cart Recovery for WooCommerce」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
延伸相關外掛(你可能也想知道)
ActiveCampaign Postmark for WordPress 》如果您仍然使用預設的 SMTP 發送電子郵件,您將對送達問題視而不見!ActiveCampaign WordPress 的 Postmark 外掛能夠幫助任何大小網站,可靠地發送和跟踪 Wor...。
WP Telegram (Auto Post and Notifications) 》完美整合 Telegram 至 WordPress,讓您完全掌握控制。, Telegram 的卓越 LIVER 支援, 加入聊天室, 我們在 Telegram 上有一個公開小組,提供協助設置外掛、討...。
Disable Theme and Plugin Auto-Update Emails 》該外掛可以禁用網站在自動主題和/或外掛更新後發送的預設通知電子郵件。只需啟用該外掛即可禁用這些電子郵件通知(除非啟用設置以禁用失敗通知)。, 這是一個...。
Hide admin notices – Admin Notification Center 》厭倦了屏幕頂部的通知來自您安裝的所有 WordPress 外掛?, 以下是您可以做到的:, * 根據使用者角色顯示或不顯示通知。, * 將所有通知分組顯示在位於頁面右側...。
Notibar – Notification Bar for WordPress 》自訂固定頁首、通知欄、警示、促銷碼、行銷活動、置頂橫幅的外掛, 此外掛能在網站新增頂部通知欄,提示重要公告,並可設為固定頁首,在瀏覽時一直顯示。您可...。
WP Nag Hide 》如果插件通知和內嵌警告妨礙了您的操作,啟用 WP Nag Hide Plugin,就可以選擇在管理面板中隱藏更新通知和插件警告。該插件僅隱藏管理頁面頂部的通知,不會隱...。Perfecty Push Notifications 》這個外掛可以提供自己架設 Push 通知,不需使用外部提供商的 API 金鑰,也不會如同後來收費後的外部提供商將收取費用。此外掛是自由開源的,所有資訊儲存於 W...。
Hide WP Admin Notifications 》總結:本外掛提供直覺且易用的介面,讓使用者控制管理介面中的通知訊息,使用者可以依照自己的需求開啟通知,並且掌握最新的更新、安全警告和重要的通知訊息...。
WP Hide Notifications Updates and Warnings 》原始的 WP Hide Notifications Updates and Warnings 外掛終於回歸!, 隱藏令人困擾的更新警告和通知。, 功能包括:, , 隱藏更新。, 隱藏通知。, 隱藏警告。,...。
Community by PeepSo – Download from PeepSo.com 》PeepSo 是一個超輕且免費的社交網絡外掛程式,可以讓你快速及輕鬆地在 WordPress 網站內建立社交網絡或線上社群。PeepSo 非常高效和易用,類似於 Facebook 的...。Hide All Notices 》這個外掛是基於經常受到提示訊息的干擾以及不斷告訴客戶無需擔憂而製作而成。, 需要其他功能嗎?請讓我知道!, 此外掛可隱藏以下內容:, , WordPress 提示訊息...。
NotifSMS – SMS Notifications OTP & 2FA for WordPress & WooCommerce 》WordPress SMS Plugin: 如果你想在你的 WordPress 網站或應用程式中啟用簡訊(SMS)功能,這個外掛就是為此而創建的。它使用了市場上最好的簡訊解決方案之一 ...。
Simple Shortcodes 》這個外掛可與任何佈景主題一起使用,但是特別與simplethemes.com的佈景主題相容。簡單短碼 (Simple Shortcodes)為您的編輯器工具列添加了一個按鈕,方便快速...。
SAR Friendly SMTP 》WordPress 有很多 SMTP 外掛可供選擇,其中一些使用了第三方庫但運作不佳,另一些看起來幾乎相同但卻有不同的名稱……, 其中大部分都會經常性地覆寫寄件者信箱...。
Slack Notifications by dorzki 》這款輕量且可自定的 WordPress 外掛可讓您的網站與 Slack 整合。, 選擇您想接收的通知類型:, * WordPress 更新提醒, * 插件更新提醒, * 管理員登入通知, * ...。
