This is an info Alert.
x402 Logo
  • Product
    • Become Agent-Ready
      • Merchants
        Agentic Commerce — list your store across ChatGPT, Gemini, Claude & Perplexity
      • Publishers
        Monetize your content when AI agents read, cite, or train on it
      • SaaS Companies
        Treat AI agents as first-class customers with agent-priced checkout
    • Monetize
      • Monetize MCP Server
        Charge per call on any MCP server in 2 minutes
      • Monetize AI Agents
        Turn n8n, Zapier, Activepieces workflows into revenue
      • Agent Feed
        Pay-per-query access to licensed publisher content for your agents
  • Resources
    • xpay Ecosystem
      • xpay✦ Tools
        1,000+ pay-per-use tools for your AI agents
      • Agent-Ready SaaS Index
        25,481 SaaS scored on agent-buyability
      • SaaS Pricing Database
        Pricing pages indexed across 1,000+ categories
      • Shopify Apps Directory
        Every Shopify app, with its full review history
      • WooCommerce Plugins Directory
        Every WooCommerce plugin, scored on how well it is maintained
      • GitHub
        Open source repositories
    • Agent Building
      • Agent Frameworks
        AI frameworks for building multi-agent systems
      • x402 Integration
        AI frameworks with x402 payment integration
      • Networks
        Blockchain networks supporting x402
    • Company
      • About xpay✦
        Our mission, products, and protocols
      • Blog
        Latest insights and updates
      • Docs
        Complete xpay documentation
  • Pricing
  • Blog
  • Docs
Get Started
  1. xpay✦ Commerce

  2. Directory

  3. WooCommerce plugins

  4. Wenprise WeChatPay Payment Gateway For WooCommerce

Wenprise WeChatPay Payment Gateway For WooCommerce

WeChat payment gateway for WooCommerce, WooCommerce 微信免费全功能支付网关。

400+ active installs
5.0
(2 ratings)
Free on WordPress.org
View on WordPress.orgSupport forum
Will this break my store?

What the WordPress.org registry says about keeping Wenprise WeChatPay Payment Gateway For WooCommerce running.

WordPress compatibility
Tested to 6.9.5 — 1 branch behind 7.0
Tested against the WordPress branch in use today.
Last updated
2 months ago
At least 2.2 releases a year since launch. WordPress.org only lists versions still available for download, so the real number may be higher.
Requires PHP
7.4
Your host must be running at least this version.
Requires WordPress
4.7
Contributors
1
A single maintainer. Worth knowing if the plugin is load-bearing for your store.

400+ active installsWordPress.org reports installs in bands, not exact counts.
Maintenance & trust

Scored on how Wenprise WeChatPay Payment Gateway For WooCommerce is looked after — not on how many stores run it.

Solid
Not enough public feedback to put a confident number on this one. Little public feedback — score rests mostly on release activity. What we can see is below.

Maintenance
35 / 35
Updated 72 days ago.
WordPress compatibility
14 / 20
Tested to WP 6.9.5, 1 branch(es) behind.
Support responsiveness
Not enough data
Only 0 support thread(s) — not enough to judge.
Merchant satisfaction
11 / 15
5.0/5 across 2 rating(s).
Listing transparency
3 / 10
Provides: homepage
1 of 5 measures had too little evidence to score. They are left out of the total rather than counted as zero — otherwise a plugin would be marked down for being small rather than for being poorly kept.Measured 2026-08-02 from the WordPress.org plugin registry.
Ratings

5.0

2 ratings
5★2
4★0
3★0
2★0
1★0
Every rating WordPress.org holds for this plugin, not a sample. Written reviews live in the plugin's WordPress.org reviews forum.

功能更全面的 WooCommerce 免费微信支付网关,企业版,需要微信企业认证才可以使用。支持功能如下:

  • 支持所有 WooCommerce 产品类型
  • PC 端扫描二维码支付
  • 移动端浏览器 H5 调起微信支付
  • 微信端公众号支付,需要安装微信登录插件,设置 open_id
  • 支持作为小程序付款后端使用
  • 在 WooCommerce 订单中直接通过微信退款,退款原路返回
  • 货币不是人民币时,可以设置一个固定汇率
  • 兼容 Wenprise Security 登录插件
  • 兼容讯虎登录插件
  • 支持区块结账页面
  • 支持高性能存储

在微信小程序中使用

本插件支持小程序支付,具体使用方法请参考下面的示例项目。

小程序支付示例项目

插件设置方法及使用教程

Wenprise WeChatPay Payment Gateway For WooCommerce 微信支付插件设置教程

付费设置服务

如果你不想自己动手设置,或者自己设置有困难,可以购买我们的付费设置服务。
WooCommerce微信支付插件设置服务

WordPress插件定制开发服务

我们还提供 WordPress 定制开发服务,有需要的朋友可通过下面的页面联系我们。

WordPress插件定制开发服务

支付宝支付网关

Wenprise Alipay Payment Gateway For WooCommerce

Support 技术支持

Email: amos@wpcio.com

无法在微信公众号中支付?在微信中支付,提示「微信支付配置错误」?

在微信公众号中,需要获取 open_id 才能使用此插件进行支付,如果您的网站已经实现了微信公众号授权登录,请参考下一个问题中的代码进行兼容。

怎么兼容其他微信登录插件?

如果已经使用了其他微信登录插件,可以通过wprs_wc_wechat_open_id 这个 Filter 来修改支付插件使用的 open_id,修改下面代码中获取 open_id 的代码为对应登录插件中的代码即可。

add_filter('wprs_wc_wechat_open_id', function(){
    $open_id = ''; //需要自行获取其他微信登录插件中记录的 openid
    return $open_id;
});

怎么使用小程序登录功能?

在小程序中,发送请求到url:/wc-api/wprs-wc-wechatpay-mini-app-login

wx.login({
success(res) {
if (res.code) {
wx.request({
url : config.getRootUrl + ‘/wc-api/wprs-wc-wechatpay-mini-app-login’,
data: {
code: res.code,
},
success(res) {

                // 保存小程序登录信息
                wx.setStorageSync('open_id', res.data.data.openid);

                // 请求支付插件获取支付信息
                wx.request({
                    url   : config.getRootUrl +  'wc-api/wprs-wc-wechatpay-mini-app-bridge',
                    method: 'POST',
                    data  : {
                        open_id : res.data.data.openid,
                        from    : 'mini_app',
                        order_id: payData.order_id,
                    },
                    success(res) {

                        var payment_data = res.data.data;

                        // 发送支付请求,在小程序中调起支付
                        wx.requestPayment({
                            timeStamp: payment_data.timeStamp,
                            nonceStr : payment_data.nonceStr,
                            package  : decodeURIComponent(payment_data.package),
                            signType : 'MD5',
                            paySign  : payment_data.paySign,
                            success(res) {
                                console.log('支付成功', res);
                                // 支付成功以后,再跳回webview页,并把支付成功状态传回去
                                wx.navigateTo({
                                    url: '../webview/webview?src=' + encodeURI(payment_data.return_url),
                                });
                            },
                            fail(res) {
                                console.log('支付失败', res);
                            },
                        });

                    },
                });

            },
        });
    } else {
        console.log('登录失败!' + res.errMsg);
    }
},

});

Categories
Payment gateways
Plugin details
Version2.2.2
Last updated2026-05-22 1:45pm GMT
Added2019-03-19
Requires WordPress4.7
Tested up to6.9.5
Requires PHP7.4

Tags on WordPress.org
alipay
payment gateway
Wechat Payment Gateway
woocommerce
微信支付
Alternatives
Other plugins in the same categories.
Payment Plugins for PayPal WooCommerce
80K+ installs
4.9(124)
Payment Gateway for PayPal on WooCommerce
10K+ installs
4.4(74)
Payment Plugins for Stripe WooCommerce
100K+ installs
4.8(298)
WooPayments: Integrated WooCommerce Payments
900K+ installs
3.3(162)
WooCommerce Stripe Payment Gateway
700K+ installs
3.1(235)
Knit Pay – Cashfree, Instamojo, Razorpay, PayPal and more
2K+ installs
4.9(101)
x402 Logo

The agent-readiness stack for the AI shopping era — helping merchants, publishers and SaaS companies get discovered, cited and transacted with by ChatGPT, Perplexity, Claude, Gemini and the custom shopping agents underneath them.

CompanyAgentically Inc. (d/b/a xpay✦)1875 Mission St, Ste 103San Francisco, CA 94103, United Stateslegal@xpay.sh · privacy@xpay.sh
or ask your AI app
Company
About xpayAgency PartnersGitHubDiscordllms.txt
DevelopersDocumentationAPI ReferenceSDKs & LibrariesQuickstart GuideOpenAPI Spec
Stay Updated
Occasional product updates and agent-readiness playbooks from xpay (Agentically Inc.) — typically a couple of emails a month. Double opt-in: we email you a link to confirm before sending anything, and every email has one-click unsubscribe.
Social
  • For Publishers
    • News
    • Finance
    • Dev / Tech
    • Travel
    • View all verticals
  • Agent Feed
    • AI Search Engines
    • RAG Builders
    • Browser Agents
    • Vertical Research
    • Browse full catalog
  • Agent-Ready Index
    • SaaS Pricing Database
    • Agent-Ready SaaS Index
    • Verified band
    • AI & ML
    • Sales & CRM
  • Products
    • Pricing Widget
    • Monetize MCP Server
    • Paywall
    • Smart Proxy
    • Monetize AI Agents
    • xpay x402 Facilitator
  • Agentic Economy
    • Timeline
    • Resources
    • Manifesto
    • Stack
  • Agentic Commerce
    • Get listed
    • ChatGPT Ads
    • How ChatGPT Ads work
    • ChatGPT Ads · Apparel
    • ChatGPT Ads · Health & Beauty
    • xpay Listings · Amazon + Google
    • Pricing
    • Free audit
    • Shopify
    • WooCommerce
    • Apparel & Accessories
    • Health & Beauty
    • Overview
  • Commerce Index
    • Shopify apps directory
    • Agentic Commerce Ready Index
    • Methodology
    • Pet brands · WooCommerce
    • Pet brands · Shopify
  • Marketplace
    • 🛍️ xpay.deals — agentic storefront for deals
  • Protocols
    • Overview
    • x402
    • MPP
    • UCP
    • ACP
    • AP2
    • TAP
    • A2A
  • Agent Frameworks
    • Overview
    • LangChain
    • CrewAI
    • Claude MCP
    • AutoGPT
    • LangChain vs Mastra
    • LangGraph vs Pydantic AI
  • Company
    • About xpay
    • Blog
    • Docs
    • GitHub
  • Free prompts
    • Ecommerce prompts
    • Email marketing prompts
    • Product description prompts
    • Facebook ad prompts
    • Skincare prompts
    • Supplement prompts
    • Wine prompts
    • Electronics prompts

© 2025 Agentically Inc. All rights reserved.
Privacy PolicyTerms of UseAcceptable Use Policy